// JavaScript Document
function showTrans(ss){
	var ds=$("#TranslucentDiv");
	if(ss){
		ds.show();
	}else{
		ds.hide();
	}
}

function ShowNews(id){
	$("#ncontent").show();
	$.get("ShowNews.asp",{id:id},function(xhtml){
		$("#nnConent").html(xhtml);
		//$("").css("");
	});
	showTrans(true);
}
function ShowJob(id){
	$("#ncontent").show();
	$.get("ShowJob.asp",{id:id},function(xhtml){
		$("#nnConent").html(xhtml);
		//$("").css("");
	});
	showTrans(true);
}
function ShowWenhua(id){
	$("#ncontent").show();
	$.get("ShowWenhua.asp",{id:id},function(xhtml){
		$("#nnConent").html(xhtml);
		//$("").css("");
	});
	showTrans(true);
}
function CloseNews(){
	$("#ncontent").hide();
	$("#nnConent").html("<img src=\"../images/loading.gif\">");
	showTrans(false);
}

