//职位点击效果
var number = 1;
function MovieDiv(number)
{
for(n=1;n<4;n++)
{
if (n==number)
	{document.getElementById("Cn"+n).className="ss02";
	}
else
	{document.getElementById("Cn"+n).className="ss01";
	}
}
}

function ShowLayer01(){
	var layer=document.getElementById("Layer01");
	var mask=document.getElementById("pop_mask");
	$('#Layer01').show()
	$('#pop_mask').show()		
	mask.style.display="block";
	layer.style.display="block";
	mask.style.width=document.body.clientWidth+"px";
	mask.style.height=document.body.clientHeight+"px";
	layer.style.left=(document.body.clientWidth-546)/2+"px";
	layer.style.top=(document.body.clientHeight-256)/2+"px";
}
function HideLayer01(){
	$('#Layer01').hide()
	$('#pop_mask').hide()
}

function ShowZhiwei(){
	var layer=document.getElementById("Layer02");
	var mask=document.getElementById("pop_mask");
	$('#Layer02').show()
	$('#pop_mask').show()		
	mask.style.display="block";
	layer.style.display="block";
	mask.style.width=document.body.clientWidth+"px";
	mask.style.height=document.body.clientHeight+"px";
	layer.style.left=(document.body.clientWidth-546)/2+"px";
	layer.style.top=(document.body.clientHeight-646)/2+"px";
}
function HideZhiwei(){
	$('#Layer02').hide()
	$('#pop_mask').hide()
}
