/////////////////////////////////////////////////////////////////////////
//menuhiglight var color=(on==true)?"#FF5604 ( mouse drüber) :"#FF8042" (mouse out)
//////////////////////
var isValidBrowser =document.getElementById;

function highlight(id,on){
		if(!isValidBrowser){return(false);}
        var color=(on==true)?"#F6DCC3":"#BFCBDD"
        if(document.getElementById){
			var theDiv=document.getElementById(id);
			if(theDiv){
				if(theDiv.getAttribute("class")=="tabLeftLinkFond" || theDiv.getAttribute("className")=="tabLeftLinkFond" ||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","tabLeftLinkFond");
			theDiv.setAttribute("class","tabLeftLinkFond");
        }
    }
