// JavaScript Document
var img1=new Image();
var img2=new Image();
var img3=new Image();
var img4=new Image();
var img5=new Image();
var img6=new Image();
var img7=new Image();
var img8=new Image();
var img9=new Image();
var img10=new Image();
var img11=new Image();
var img12=new Image();
var img13=new Image();
var img14=new Image();
var img15=new Image();
var img16=new Image();
img1.src="images/structure/kp_menu_about_kerry_h.png";
img2.src="images/structure/kp_menu_articles_h.png";
img3.src="images/structure/kp_menu_contact_h.png";
img4.src="images/structure/kp_menu_home_h.png";
img5.src="images/structure/kp_menu_intuitive_readings_h.png";
img6.src="images/structure/kp_menu_oracle_readings_h.png";
img7.src="images/structure/kp_menu_products_h.png";
img8.src="images/structure/kp_menu_resources_h.png";
img9.src="images/structure/kp_menu_speaking_engagement_h.png";
img10.src="images/structure/kp_menu_spirit_speaks_h.png";
img11.src="images/structure/kp_menu_testimonials_h.png";
img12.src="images/structure/kp_menu_workshops_h.png";
img13.src="images/structure/kp_icon_kerrys_story_h.png";
img14.src="images/structure/kp_icon_oracle_readings_h.png";
img15.src="images/structure/kp_button_oracle_reading_h.png";
img16.src="images/structure/ind_menu_life_coaching_h.png";

var menuID="kp-menu";
var iconID="kp-footer-icons";
var highlightID="";

function onMouseOverEvt(){
	var parts=this.src.split("_u.");
	this.src=parts[0]+"_h."+parts[1];
}
function onMouseOutEvt(){
	var parts=this.src.split("_h.");
	this.src=parts[0]+"_u."+parts[1];
}
function init(){
	var menuImages=document.getElementById(menuID).getElementsByTagName("IMG");
	var parts=window.location.pathname.split("/");
	var lastPartIndex=parts.length-1;
	if(parts[lastPartIndex]=="index.php")highlightID="kp-menu-home";
	if(parts[lastPartIndex]=="about_kerry.php")highlightID="kp-menu-about-kerry";
	if(parts[lastPartIndex]=="articles.php")highlightID="kp-menu-articles";
	if(parts[lastPartIndex]=="contact.php")highlightID="kp-menu-contact";
	if(parts[lastPartIndex]=="intuitive_readings.php"||parts[lastPartIndex-1]=="intuitive_readings")highlightID="kp-menu-intuitive-readings";
	if(parts[lastPartIndex]=="oracle_readings.php")highlightID="kp-menu-oracle-readings";
	if(parts[lastPartIndex]=="products.php")highlightID="kp-menu-products";
	if(parts[lastPartIndex]=="resources.php")highlightID="kp-menu-resources";
	if(parts[lastPartIndex]=="speaking_engagement.php")highlightID="kp-menu-speaking-engagement";
	if(parts[lastPartIndex]=="spirit_speaks.php")highlightID="kp-menu-spirit-speaks";
	if(parts[lastPartIndex]=="testimonials.php")highlightID="kp-menu-testimonials";
	if(parts[lastPartIndex]=="workshops.php")highlightID="kp-menu-workshops";
	var i=0;
	while(menuImages[i]){
		if(menuImages[i].id!=highlightID){
			menuImages[i].onmouseover=onMouseOverEvt;
			menuImages[i].onmouseout=onMouseOutEvt;
		}
		else{
			var srcParts=menuImages[i].src.split("_u.");
			menuImages[i].src=srcParts[0]+"_h."+srcParts[1];
		}
		i++;
	}
	menuImages=document.getElementById(iconID).getElementsByTagName("IMG");
	i=0;
	while(menuImages[i]){
		menuImages[i].onmouseover=onMouseOverEvt;
		menuImages[i].onmouseout=onMouseOutEvt;
		i++;
	}
	var oracleReading=document.getElementById("kp-button-oracle-reading");
	if(oracleReading!=null){
		oracleReading.onmouseover=onMouseOverEvt;
		oracleReading.onmouseout=onMouseOutEvt;
	}
}
