function checkMenu(strAddress){

	var objString = new String(strAddress)
	
	if (objString.indexOf("profile") >0){
		window.document["menu"].SetVariable("dx", -620);
		window.document["menu"].SetVariable("dx2", -620);
		window.document["menu"].SetVariable("dx3", 238);
		window.document["menu"].SetVariable("dx3alpha", 100);
		window.document["menu"].SetVariable("dx4", 583);
		window.document["menu"].SetVariable("dx4alpha", 0);
		
		
	} else if (objString.indexOf("internet") >0) {
		window.document["menu"].SetVariable("dx", -1110);
		window.document["menu"].SetVariable("dx2", -1110);
		window.document["menu"].SetVariable("dx3", 328);
		window.document["menu"].SetVariable("dx3alpha", 100);
		window.document["menu"].SetVariable("dx4", 329);
		window.document["menu"].SetVariable("dx4alpha", 100);
		window.document["menu"].SetVariable("submenuSelect", 1);
		
		
	} else if (objString.indexOf("interactive") >0) {
		window.document["menu"].SetVariable("dx", -1110);
		window.document["menu"].SetVariable("dx2", -1110);
		window.document["menu"].SetVariable("dx3", 328);
		window.document["menu"].SetVariable("dx3alpha", 100);
		window.document["menu"].SetVariable("dx4", 329);
		window.document["menu"].SetVariable("dx4alpha", 100);
		window.document["menu"].SetVariable("submenuSelect", 2);
		
		
	} else if (objString.indexOf("seo") >0) {
		window.document["menu"].SetVariable("dx", -1110);
		window.document["menu"].SetVariable("dx2", -1110);
		window.document["menu"].SetVariable("dx3", 328);
		window.document["menu"].SetVariable("dx3alpha", 100);
		window.document["menu"].SetVariable("dx4", 329);
		window.document["menu"].SetVariable("dx4alpha", 100);
		window.document["menu"].SetVariable("submenuSelect", 3);
		
		
	} else if (objString.indexOf("contact") >0) {
		window.document["menu"].SetVariable("dx", -1600);
		window.document["menu"].SetVariable("dx2", -1600);
		window.document["menu"].SetVariable("dx3", 418);
		window.document["menu"].SetVariable("dx3alpha", 100);
		window.document["menu"].SetVariable("dx4", 583);
		window.document["menu"].SetVariable("dx4alpha", 0);
		
	} else if ((objString.indexOf("login") >0) || (objString.indexOf("check") >0)) {
		window.document["menu"].SetVariable("dx3", 148);
		window.document["menu"].SetVariable("dx3alpha", 100);
		window.document["menu"].SetVariable("dx4", 583);
		window.document["menu"].SetVariable("dx4alpha", 0);
		
	}

}

function jumpLink(page) {
	if(page == 'contact') {
		window.document["menu"].SetVariable("jumpLinkVar", 1);
		var myStyle = document.getElementById('menu1').style;
		 myStyle.fontWeight='normal';
		var myStyle = document.getElementById('menu2').style;
		 myStyle.fontWeight='normal';
		var myStyle = document.getElementById('menu3').style;
		 myStyle.fontWeight='normal';
		var myStyle = document.getElementById('menu4').style;
		 myStyle.fontWeight='bold';
		var myStyle = document.getElementById('submenu').style;
		 myStyle.display='none';
	}
}
//-->