// JavaScript Document

//推荐列表
$(document).ready(function(){
	$(".rank").hover(function(){
		$(this).css("background", "#ddd")
		}, function(){
			$(this).css("background", "#fafafa")
			})
});

$(document).ready(function(){
	$(".rank").hover(function(){
		if ($(this).hasClass("one")){
			$(".rank").find(".rankOn").hide();
			$(".rank").find(".rankOff").show();
			$(this).find(".rankOn").show();
			$(this).find(".rankOff").hide();
		}
		else{
			$(".rank").find(".rankOn").hide();
			$(".rank").find(".rankOff").show();
			$(this).find(".rankOn").show();
			$(this).find(".rankOff").hide();
		}
		
	}, function(){})
});
