//-------------------------------------------------------
function setLayerVisibility(layerID, mode)
{	
	layerID = layerID.replace(/layerLink_/, "");
	// mode = 0: MOUSEOUT
	// mode = 1: MOUSEOVER
	thisLayer = window.document.getElementById("layer_" + layerID);	
	
	if(mode == '1')
	{			
		thisLayer.style.visibility = "visible";
		thisLayer.style.top = 380 + "px";		
		// thisLayer.style.left = (window.document.body.offsetWidth / 2) + 100;
		thisLayer.style.left = ((window.document.body.offsetWidth / 2) + 86) + "px";
	}
	else
	{
		thisLayer.style.visibility = "hidden";
	}
	//alert("layer_" + layerID);
}


//-------------------------------------------------------
