$(document).ready(function(){
	$("#div_title_3").bind("mouseenter",function(){
		$("#div_type_1").hide();  
		$("#div_type_7").hide();
		$("#li_href_1").hide();
		$("#li_href_7").hide();
		
		$("#div_type_3").show();
		$("#li_href_3").show();
		
		$("#div_title_3").html('<li class="blue"><a href="#">篮球</a></li>');
		$("#div_title_1").html('<li><a href="#">足球</a></li>');
		$("#div_title_7").html('<li><a href="#">保龄球</a></li>');
	});
	$("#div_title_1").bind("mouseenter",function(){
		$("#div_type_3").hide();  
		$("#div_type_7").hide();
		$("#li_href_7").hide();
		$("#li_href_3").hide();
		
		$("#div_type_1").show();
		$("#li_href_1").show();
		
		$("#div_title_1").html('<li class="blue"><a href="#">足球</a></li>');
		$("#div_title_3").html('<li><a href="#">篮球</a></li>');
		$("#div_title_7").html('<li><a href="#">保龄球</a></li>');
	});
	$("#div_title_7").bind("mouseenter",function(){
		$("#div_type_1").hide();  
		$("#div_type_3").hide();
		$("#li_href_1").hide();
		$("#li_href_3").hide();
		
		$("#div_type_7").show();
		$("#li_href_7").show();
		
		$("#div_title_3").html('<li><a href="#">篮球</a></li>');
		$("#div_title_1").html('<li><a href="#">足球</a></li>');
		$("#div_title_7").html('<li class="blue"><a href="#">保龄球</a></li>');
	});
	
	$("#div_title_2").bind("mouseenter",function(){
		$("#div_type_4").hide();  
		$("#div_type_6").hide();
		$("#li_href_4").hide();
		$("#li_href_6").hide();
		
		$("#div_type_2").show();
		$("#li_href_2").show();
		
		$("#div_title_2").html('<li class="blue"><a href="#">赛车</a></li>');
		$("#div_title_4").html('<li><a href="#">钓鱼</a></li>');
		$("#div_title_6").html('<li><a href="#">射击</a></li>');
	});
	$("#div_title_4").bind("mouseenter",function(){
		$("#div_type_2").hide();  
		$("#div_type_6").hide();
		$("#li_href_2").hide();
		$("#li_href_6").hide();
		
		$("#div_type_4").show();
		$("#li_href_4").show();
		
		$("#div_title_4").html('<li class="blue"><a href="#">钓鱼</a></li>');
		$("#div_title_2").html('<li><a href="#">赛车</a></li>');
		$("#div_title_6").html('<li><a href="#">射击</a></li>');
	});
	$("#div_title_6").bind("mouseenter",function(){
		$("#div_type_2").hide();  
		$("#div_type_4").hide();
		$("#li_href_2").hide();
		$("#li_href_4").hide();
		
		$("#div_type_6").show();
		$("#li_href_6").show();
		
		$("#div_title_2").html('<li><a href="#">赛车</a></li>');
		$("#div_title_4").html('<li><a href="#">钓鱼</a></li>');
		$("#div_title_6").html('<li class="blue"><a href="#">射击</a></li>');
	});
	
	$("#div_title_5").bind("mouseenter",function(){
		$("#div_type_8").hide();  
		$("#li_href_8").hide();
		
		$("#div_type_5").show();
		$("#li_href_5").show();
		
		$("#div_title_5").html('<li class="blue"><a href="#">高尔夫</a></li>');
		$("#div_title_8").html('<li><a href="#">舞蹈</a></li>');
	});
	$("#div_title_8").bind("mouseenter",function(){
		$("#div_type_5").hide();  
		$("#li_href_5").hide();
		
		$("#div_type_8").show();
		$("#li_href_8").show();
		
		$("#div_title_5").html('<li><a href="#">高尔夫</a></li>');
		$("#div_title_8").html('<li class="blue"><a href="#">舞蹈</a></li>');
	});
	
	$("#div_newbtn_left").click(function(){
		$("#div_new_1").toggle();
		$("#div_new_2").toggle();
		return false;
	});
	$("#div_newbtn_right").click(function(){
		$("#div_new_1").toggle();
		$("#div_new_2").toggle();
		return false;
	});
});