// JavaScript Document


//window.onload=function()
//{	
	//if(document.all) addOverState("navigation")
	//if(document.all) addOverState("MenuContext")		
//}


/* function add class over on li element when mouse goes over it - necessary for IE 6 */
function addOverState(id) {
	if ( !document.getElementById(id) ) return false;

	var arrLi = document.getElementById(id).getElementsByTagName("LI");
	for (var i=0; i<arrLi.length; i++) {
		arrLi[i].onmouseover=function() {
			if( this.className != 'selected')
			{
				if( this.className != 'exli')
					this.className +="over";			
			}
			
		}
		arrLi[i].onmouseout=function() {
			if( this.className != 'selected')			
			{
				if( this.className != 'exli')
					this.className="";
			}
		}
	}
}
