// JavaScript Document
//主导航菜单显示
function site_nav()
{
	$.ajax({
		type: "GET",
		url: "include/site_public_config.php",
		data: "action=get_site_nav",
		success:function(response){
			//alert(response);
			$('#Site_Nav').html(response);
		}
	}); 	
}

//下拉菜单调用
function sub_nav( Pid, Status )
{
	if(Status=="hide"){
		$("#Sub_Nav_"+Pid).hide();	
		document.getElementById("Nav_"+Pid).className='';	
	}else{
		$("#Sub_Nav_"+Pid).show();	
		document.getElementById("Nav_"+Pid).className='on';	
	}
}

//产品介绍显示
function Intro( Sorts, ProID )
{
	document.getElementById("Intro_1").className = '';	
	document.getElementById("Intro_2").className = '';	
	document.getElementById("Intro_3").className = '';	
	document.getElementById("Intro_"+Sorts).className = 'on';	
	$.ajax({
		type: "GET",
		url: "include/site_public_config.php",
		data: "action=get_Pro_Intro&ID="+ProID+"&obj="+Sorts,
		success:function(response){
			$('#Pro_Intro').html(response);
		}
	}); 	
}