﻿// JScript File bottomMenu

function viewSubBottomMenu()
{ 



    var menuClientId = (window.document.getElementById('hiddenFieldMenu')).value;
    window.document.getElementById(menuClientId).style.visibility="visible";
    
    window.document.getElementById('firstLi').style.backgroundColor="#C1C1C1";
    window.document.getElementById('menuCell').style.backgroundColor="#C1C1C1";
    window.document.getElementById('bottommenuCell').style.backgroundColor="#C1C1C1";    
       
   // document['imgFake'].src = "../images/linkTrickHorizontalGrey.png";
        
      
    
}

function hiddenSubBottomMenu()
{ 


    var menuClientId = (window.document.getElementById('hiddenFieldMenu')).value;
    window.document.getElementById(menuClientId).style.visibility="hidden";
    
    window.document.getElementById('firstLi').style.backgroundColor="#d20019";    
    //window.document.getElementById('menuCell').style.backgroundColor="#d20019";
    window.document.getElementById('menuCell').style.backgroundColor="transparent";
    window.document.getElementById('bottommenuCell').style.backgroundColor="#d20019";
    
    //document['imgFake'].src = "../images/linkTrickHorizontal.png";        
    
    

}


function changeImages() {
	if (document.images) {
		var i=0; 
		{
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}
