/******版权所有：巨橡网络*******/
/*****Author:FantasyFire**********/
/*****Date:2010-3-3 11:27:11*******/
$(function(){
	$("#oWrape").addClass("liHover");
})

function navSwitch(obj){
	for(var i=1;i<=8;i++){
		var oTit = document.getElementById("navTitle"+i);
		var oCnt = document.getElementById("navInfo"+i);
		if(obj == i){
			$(oTit).addClass("liHover");
			$(oCnt).show("fast");
		}else{
			$(oTit).removeClass("liHover");
			$(oCnt).hide("slow");
		}
	}
}

