// JavaScript Document
var winLoc = window.location.href;
startList = function(){
	var navSelect = "none";
	if(isPage("index.html") || winLoc=="http://66.51.173.48/" || winLoc=="http://kibblewhite.ca/" || winLoc=="http://www.kibblewhite.ca/"){
		navSelect = "navHome";
	}else if(isPage("about.html")){
		navSelect = "navAbout";
	}else if(isPage("procedures.html") || isPage("rhinoplasty.html") || isPage("otoplasty.html") || isPage("blepharoplasty.html")){
		navSelect = "navProcedures";
		document.getElementById("navProceduresSub").className = "showSub";
	}else if(isPage("gallery.html")){
		navSelect = "navGallery";
	}else if(isPage("faq.html")){
		navSelect = "navFaq";
	}else if(isPage("links.html")){
		navSelect = "navLinks";
	}else if(isPage("contact.php") || isPage("thankyou.html")){
		navSelect = "navContact";
	}
	document.getElementById(navSelect).className = "selected";
	navRoot = document.getElementById("nav");
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
		if(node.innerHTML.indexOf("Pho")!=-1){
			//alert(i);
		}
		node.onmouseover=function() {
		this.className+=" over";
		}//end function
		}//end if
		
		node.onmouseout=function() {
		this.className=this.className.replace("over", "");
		}//end function
	}//end for
}//end function

isPage = function(txt){
	if(winLoc.indexOf(txt)!=-1){
		return true;
	}
	return false;
}//end function

window.onload=startList;