/////////////////////////////////////////////////////////////////////////
//menuhiglight
//////////////////////
var isValidBrowser =document.getElementById;

function highlight(id,on){
		if(!isValidBrowser){return(false);}
        var color=(on==true)?"#6FAB81":"#036A36"
        if(document.getElementById){
			var theDiv=document.getElementById(id);
			if(theDiv){
				if(theDiv.getAttribute("class")=="MenuLinkFond" || theDiv.getAttribute("className")=="MenuLinkFond" ||theDiv.getAttribute("class")=="artisonSection" || theDiv.getAttribute("className")=="artisonSection"){
           			 theDiv.style.backgroundColor=color;
				}
			}
        }
    }

function doMenu(){
        if(!isValidBrowser){return(false);}
        var theDiv =document.getElementById(currentContentPageGuid);
        if(theDiv){
            theDiv.setAttribute("className","MenuLinkFond");
			theDiv.setAttribute("class","MenuLinkFond");
        }
    }