function display(divid) 
	{
		
		var divs = document.getElementById("mainmenu").getElementsByTagName("DIV");
		//alert(divs.length);
		for (i=0;i<divs.length;i++) 
		{
			divname=divs[i].id;
			//alert(divname.substring(0,divname.length-1));
			
				divs[i].style.display="none";
		
		}
		document.getElementById("menudiv" + divid).style.display="block";
		
		
	}
	function changeimage(divid)
		{
			if(divid==5)
			{
				window.location="/newsroom.html"
			}
			if(divid==1)
			{
				window.location="/facts.html"
			}
			if(divid==6)
			{
				window.location="/Careers.html"
			}
			if(divid==7)
			{
				window.location="/Portfolio.html"
			}
			imgid="img" + divid
			var ar = document.getElementById("namomenu").getElementsByTagName("IMG");
		//alert(ar.length);
		var index=1
			for (var i=0; i<ar.length; i++)
			{
				ar[i].src='/images/buttons/menu' + index + '.gif' ;
				index=index+1;
			}
			
		document.getElementById(imgid).src='/images/buttons/menu' + divid + divid +".gif";
		display(divid);
	}
	function changespecialimage(divid)
	{
		imgid="img" + divid
					var ar = document.getElementById("namomenu").getElementsByTagName("IMG");
				//alert(ar.length);
				var index=1
					for (var i=0; i<ar.length; i++)
					{
						ar[i].src='/images/buttons/menu' + index + '.gif' ;
						index=index+1;
					}
					
		document.getElementById(imgid).src='/images/buttons/menu' + divid + divid +".gif";
	}
	
	