
	
function showLayer(layerName)
{
	eval(layerRef + layerName + endLayerRef + styleRef + ".visibility = 'visible'");
	eval(layerRef + layerName + 'Link' + endLayerRef + styleRef + ".color = '#3366cc'");
	eval(layerRef + layerName + 'Link' + endLayerRef + styleRef + ".fontWeight = 'bold'");
	eval(layerRef + layerName + 'Cell' + endLayerRef + styleRef + ".borderBottom = '1px solid #ff0000'");
	eval(layerRef + layerName + 'Cell' + endLayerRef + styleRef + ".borderTop = '1px solid #ff0000'");


}
function hideLayer(layerName)
{
	eval(layerRef + layerName + 'Link' + endLayerRef + styleRef + ".color = '#000000'");
	eval(layerRef + layerName + 'Cell' + endLayerRef + styleRef + ".borderBottom = ''");
	eval(layerRef + layerName + 'Cell' + endLayerRef + styleRef + ".borderTop = ''");
	eval(layerRef + layerName + 'Link' + endLayerRef + styleRef + ".fontWeight = ''");	
}
function hideAll(){
	hideLayer('Nav01');
	hideLayer('Nav02');
	hideLayer('Nav03');
	hideLayer('Nav04');
	hideLayer('Nav05');
	hideLayer('Nav06');
	hideLayer('Nav07');
	hideLayer('Nav08');
}
function ShowMe(layerName){
	hideAll();
	showLayer(layerName);
}


