// klarejs11.js    14 jan 08  javascript for buttons, sliding, and scrolling
// klarehome.js    15 jan 08  for home page only (incl roundels, but no sliding etc)


if (document.images){  

	//precache images
	var offImgArray = new Array();
	offImgArray["button1"] = new Image (46,21);
	offImgArray["button2"] = new Image (138,21);
	offImgArray["button3"] = new Image (182,21);
	offImgArray["button4"] = new Image (109,21);
	offImgArray["button5"] = new Image (76,21);
	offImgArray["button1"].src = "img2/buttons/bhome_up.gif";
	offImgArray["button2"].src = "img2/buttons/bartist_up.gif";
	offImgArray["button3"].src = "img2/buttons/bcommunity_up.gif";
	offImgArray["button4"].src = "img2/buttons/bcommissions_up.gif";
	offImgArray["button5"].src = "img2/buttons/bcontact_up.gif"; 
	offImgArray["email"] = new Image (205,20);
	offImgArray["email"].src = "img2/buttons/email_up.gif";
	offImgArray["hct1"] = new Image (150,171);
	offImgArray["hct1"].src = "img2/home/hct_commissions.jpg";
	offImgArray["hct2"] = new Image (150,171);
	offImgArray["hct2"].src = "img2/home/hct_denmaking.jpg";
	offImgArray["hct3"] = new Image (150,171);
	offImgArray["hct3"].src = "img2/home/hct_livingwillow.jpg";
	offImgArray["hct4"] = new Image (150,171);
	offImgArray["hct4"].src = "img2/home/hct_teambuilding.jpg";
	offImgArray["hct5"] = new Image (150,171);
	offImgArray["hct5"].src = "img2/home/hct_murals.jpg";
	offImgArray["hct6"] = new Image (150,171);
	offImgArray["hct6"].src = "img2/home/hct_bannermaking.jpg";
	offImgArray["hct7"] = new Image (150,171);
	offImgArray["hct7"].src = "img2/home/hct_mosaics.jpg";
	offImgArray["hct8"] = new Image (150,171);
	offImgArray["hct8"].src = "img2/home/hct_eventdecor.jpg";
	offImgArray["hct9"] = new Image (150,171);
	offImgArray["hct9"].src = "img2/home/hct_drywillow.jpg";
	offImgArray["hct10"] = new Image (150,171);
	offImgArray["hct10"].src = "img2/home/hct_otherprojects.jpg";
	
	
	
	var overImgArray = new Array();
	overImgArray["button1"] = new Image (46,21);
	overImgArray["button2"] = new Image (138,21);
	overImgArray["button3"] = new Image (182,21);
	overImgArray["button4"] = new Image (109,21);
	overImgArray["button5"] = new Image (76,21);
	overImgArray["button1"].src = "img2/buttons/bhome_over.gif";
	overImgArray["button2"].src = "img2/buttons/bartist_over.gif";
	overImgArray["button3"].src = "img2/buttons/bcommunity_over.gif";
	overImgArray["button4"].src = "img2/buttons/bcommissions_over.gif";
	overImgArray["button5"].src = "img2/buttons/bcontact_over.gif"; 
	overImgArray["email"] = new Image (205,20);
	overImgArray["email"].src = "img2/buttons/email_over.gif";
	overImgArray["hct1"] = new Image (150,171);
	overImgArray["hct1"].src = "img2/home/hct_commissions_over.jpg";
	overImgArray["hct2"] = new Image (150,171);
	overImgArray["hct2"].src = "img2/home/hct_denmaking_over.jpg";
	overImgArray["hct3"] = new Image (150,171);
	overImgArray["hct3"].src = "img2/home/hct_livingwillow_over.jpg";
	overImgArray["hct4"] = new Image (150,171);
	overImgArray["hct4"].src = "img2/home/hct_teambuilding_over.jpg";
	overImgArray["hct5"] = new Image (150,171);
	overImgArray["hct5"].src = "img2/home/hct_murals_over.jpg";
	overImgArray["hct6"] = new Image (150,171);
	overImgArray["hct6"].src = "img2/home/hct_bannermaking_over.jpg";
	overImgArray["hct7"] = new Image (150,171);
	overImgArray["hct7"].src = "img2/home/hct_mosaics_over.jpg";
	overImgArray["hct8"] = new Image (150,171);
	overImgArray["hct8"].src = "img2/home/hct_eventdecor_over.jpg";
	overImgArray["hct9"] = new Image (150,171);
	overImgArray["hct9"].src = "img2/home/hct_drywillow_over.jpg";
	overImgArray["hct10"] = new Image (150,171);
	overImgArray["hct10"].src = "img2/home/hct_otherprojects_over.jpg";
	
	var downImgArray = new Array();
	downImgArray["button1"] = new Image (46,21);
	downImgArray["button2"] = new Image (138,21);
	downImgArray["button3"] = new Image (182,21);
	downImgArray["button4"] = new Image (109,21);
	downImgArray["button5"] = new Image (76,21);
	downImgArray["button1"].src = "img2/buttons/bhome_down.gif";
	downImgArray["button2"].src = "img2/buttons/bartist_down.gif";
	downImgArray["button3"].src = "img2/buttons/bcommunity_down.gif";
	downImgArray["button4"].src = "img2/buttons/bcommissions_down.gif";
	downImgArray["button5"].src = "img2/buttons/bcontact_down.gif";  
	downImgArray["email"] = new Image (205,20);
	downImgArray["email"].src = "img2/buttons/email_over.gif";
		
}

/* functions for Main (top) buttons */
function mOver (imgName) {   // highlight when mouse over (except if current page), and hide Focus
	document.images[imgName].src = overImgArray[imgName].src;
	document.images[imgName].parentNode.hideFocus = true;
	window.status = " ";
	return true;
	
}
	
function mOut (imgName) {    // revert to normal when mouse out 
	document.images[imgName].src = offImgArray[imgName].src;
	document.images[imgName].parentNode.hideFocus = true;
	window.status = "";
	return true;
}

function mDown (imgName) {   // highlight   - then page changes anyway
	document.images[imgName].src = downImgArray[imgName].src;
	document.images[imgName].parentNode.hideFocus = true;
	window.status = " ";
	return true;
}


