// JavaScript Document
$(window).load(function(){
	$("#fengcai h2").hover(function() {
		$("#fengcai h2").removeClass("select");
		$(this).addClass("select");
		$("#fengcaibox ul").hide();
		var activeTab = $(this).attr("title");
		$("#"+activeTab).show();
		return false;
	});
	
	$("#xiaorong h2").hover(function() {
		$("#xiaorong h2").removeClass("select");
		$(this).addClass("select");
		$("#xiaorongbox ul").hide();
		var activeTab = $(this).attr("title");
		$("#"+activeTab).show();
		return false;
	});
});

