// JavaScript Documentfunction ChangeClass(menu, newClass) {	 if (document.getElementById) {	 	document.getElementById(menu).className = newClass;	 }}function thechange() {  //myPage = document.getElementById('pgLocation').value;  var fullPath = document.location.href;  if(fullPath.indexOf('?') > -1){    myPage = fullPath.substring(fullPath.lastIndexOf('/') + 1, fullPath.indexOf('?'));  }else{    myPage = fullPath.substring(fullPath.lastIndexOf('/') + 1);  }  //alert(myPage);	if(myPage == "index.php"){		document.getElementById('nav_home').className = 'on';	}else if(myPage == "contact.php"){		document.getElementById('nav_contact').className = 'on';	}else if(myPage == "portfolio.php"){		document.getElementById('nav_portfolio').className = 'on';	}else if(myPage == "experience.php"){		document.getElementById('nav_experience').className = 'on';	}else if(myPage == "thankyou.php"){		document.getElementById('nav_conact').className = 'on';	}}
