var target=0;
var slide=1/6;
function moveIt(loc){
	target=loc;
	document.getElementById('menusensor').style.left="0px";
	slideIt();
         hideIt();
}
function slideIt(){
	curpos+=(target-curpos) * slide;
	document.getElementById('indicator').style.left=curpos + "px";
	if(1<Math.abs(target-curpos)){
		setTimeout("slideIt()",10);
	}
}
function showIt(){

	document.getElementById('bridge').style.left=260 + "px";
	document.getElementById('lovelymenu').style.left=260 + "px";
}





