$(function(){

	$("#wi li").hover(function(){
				var id = $(this).attr("id");
				if(id == null||id=='')return false;
				var o = $(this).offset();
				var left = o.left;
				var top = o.top + 44;
				$("#"+id+"_on").css({left:left,top:top}).show();			   
							   
							   
							   
							   },function(){
								   
				$(".fc").hide();		
								   });
	
	$(".fc").hover(function(){$(this).show();},function(){$(this).hide();});
});
