	var leftpos = -202;
	var a = leftpos;
	var mout;
	var min;
	var dly;
	var rundelay = true;
	function move(chk){
		if (chk==1){
			rundelay = false;
			clearTimeout(dly);
		}
		if (a < 0){
			a = a+5;
			if (a > 0)
				a = 0;
			document.getElementById('quicklink').style.left = a+'px';
			mout = setTimeout("move(0)", 10);
		}
		else{
			a = 0;
			clearTimeout(mout);
		}
	}
	function movein(){
		if (a > leftpos){
			a = a-5;
			if (a < leftpos)
				a = leftpos;
			document.getElementById('quicklink').style.left = a+'px';
			min = setTimeout("movein()", 10);
		}
		else{
			a = leftpos;
			rundelay = true;
			clearTimeout(min);
			clearTimeout(dly);
		}
	}
	
	function delayout(){
		if (rundelay)
			dly = setTimeout("move(1)",700);
		else
			move(0);
	}
