var t;
$(document).ready(function(){
	$(".item").hover(
	function(){
		$(this).find(".sub:eq(0)").stop(true, true).fadeIn("fast");
	},
	function(){
        $(this).find('.sub:eq(0)').stop(true, true).fadeOut("fast");
	});
	
	$("#menu li").hover(
	function(){
		$(this).find(".sub:eq(0)").stop(true, true).fadeIn("fast");
	},
	function(){
        $(this).find('.sub:eq(0)').stop(true, true).fadeOut("fast");
	});
});