//首页
$(function(){
	$(".recommend .sub li:not('.hover')").bind('mouseenter',function(){
		$('.recommend').has($(this)).find('.sub .hover').removeClass('hover');
		$('.recommend').has($(this)).find("ul:not('.sub')").hide().eq($(this).index()).show();
		$(this).addClass('hover');
	});
	$(".recommend").map(function(){ $(this).find(".sub li:first").mouseenter()});
	$("#sort ul li div").map(function(){$(this).find('a:odd').css('border-right',"none");})
	$("#sort ul li").bind('mouseenter',function(){
		$(this).find('div').show();
	})
	$("#sort ul li").bind('mouseleave',function(){
		$(this).find('div').hide();
	})
	$("#banner a:first").attr('href','http://www.tmall.com/go/chn/tbk_channel/tmall_new.php?pid=mm_10127931_2548080_9533453&eventid=101334');
})

