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