var moving='';
$("#fancymenu a").mouseover(function(){	
	clearTimeout(moving);
	$(".background").stop();
	leftPos=this.offsetLeft;
	$(".background").animate({ left: leftPos }, 560 );			
});
$("#fancymenu li").mouseout(function(){
	moving=setTimeout("select_default()",100);
});
function select_default() {
	clearTimeout(moving);
	$(".selected").each(function(){
		this.style.color="#000000";
		leftPos=this.offsetLeft;
	})
	$(".background").stop();
	$(".background").animate({ left: leftPos }, 560 );
}
$(document).ready(function () {
	select_default();
	 $("li.fade").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});
});