var where_to;var the_timeout;function moveIt()	{	if (background_label.style.left<where_to)		{		background_label.style.left=parseInt(background_label.style.left) + 15;		}	if (background_label.style.left>where_to)		{		background_label.style.left=parseInt(background_label.style.left) - 15;		}	the_timeout = setTimeout('moveIt()', 15);	}function getOverIt(the_label)	{	clearTimeout(the_timeout);	moveIt();	where_to=the_label.style.left;	}