// JavaScript Document

function menuOver(name){
	document.getElementById(name+"_p").style.color="#999";
    document.getElementById(name).style.backgroundImage="url(/ver2/inc_comm/img/menu-focus.gif)";
}


function menuOut(name){
	
	document.getElementById(name+"_p").style.color="#000";
	
	switch(name){
		case "home":
			document.getElementById("home").style.backgroundImage="url(/ver2/inc_comm/img/menu-home.gif)";
			break;
		case "introduction":
			document.getElementById("introduction").style.backgroundImage="url(/ver2/inc_comm/img/menu-introduction.gif)";
			break;
		case "examples":
			document.getElementById("examples").style.backgroundImage="url(/ver2/inc_comm/img/menu-examples.gif)";
			break;
		case "download":
			document.getElementById("download").style.backgroundImage="url(/ver2/inc_comm/img/menu-download.gif)";
			break;
		case "purchase":
			document.getElementById("purchase").style.backgroundImage="url(/ver2/inc_comm/img/menu-purchase.gif)";
			break;
		case "support":
			document.getElementById("support").style.backgroundImage="url(/ver2/inc_comm/img/menu-support.gif)";
			break;
		case "contact_us":
			document.getElementById("contact_us").style.backgroundImage="url(/ver2/inc_comm/img/menu-contact-us.gif)";
			break;
	}
	
	focus()
}


function focus(){
	
		if(location.pathname.match("/index") == "/index"){
			if(location.pathname.match("ver2") == null){
				document.getElementById("home_p").style.color="#000";
				document.getElementById("home").style.backgroundImage="url(/ver2/inc_comm/img/menu-focus.gif)";
			}
		}
		
		if(location.pathname.match("introduction") == "introduction"){
			document.getElementById("introduction_p").style.color="#000";
			document.getElementById("introduction").style.backgroundImage="url(/ver2/inc_comm/img/menu-focus.gif)";
		}
		if(location.pathname.match("examples") == "examples"){
			document.getElementById("examples_p").style.color="#000";
			document.getElementById("examples").style.backgroundImage="url(/ver2/inc_comm/img/menu-focus.gif)";
		}
		if(location.pathname.match("download") == "download"){
			document.getElementById("download_p").style.color="#000";
			document.getElementById("download").style.backgroundImage="url(/ver2/inc_comm/img/menu-focus.gif)";
		}
		if(location.pathname.match("purchase") == "purchase"){
			document.getElementById("purchase_p").style.color="#000";
			document.getElementById("purchase").style.backgroundImage="url(/ver2/inc_comm/img/menu-focus.gif)";
		}
		if(location.pathname.match("support") == "support"){
			document.getElementById("support_p").style.color="#000";
			document.getElementById("support").style.backgroundImage="url(/ver2/inc_comm/img/menu-focus.gif)";
		}
		if(location.pathname.match("contact_us") == "contact_us"){
			document.getElementById("contact_us_p").style.color="#000";
			document.getElementById("contact_us").style.backgroundImage="url(/ver2/inc_comm/img/menu-focus.gif)";
		}	
}
