<!--
//*************************************************************
// ianRoberts.us - Home rollover
// Alizesonline.com - Gilles Gomez - 2001~2006
//*************************************************************

ie4 = (document.all)?true:false;			//IE 4/5 compatible
dom = (document.getElementById)?true:false;		//DOM compatible

//********************************************************
// Variables
//********************************************************
homePicsPath="imagesHome/";				//The path where you have the pics

altHome1=new Image();					//Preloads home alternate images
altHome1.src=homePicsPath + "homeIanInfob.gif";
altHome2=new Image();
altHome2.src=homePicsPath + "homeGalleryInfob.gif";
altHome3=new Image();
altHome3.src=homePicsPath + "homeBooksInfo2b.gif";
altHome4=new Image();
altHome4.src=homePicsPath + "homeBooksInfo1b.gif";
altHome5=new Image();
altHome5.src=homePicsPath + "homeWorkshopsInfob.gif";
altHome6=new Image();
altHome6.src=homePicsPath + "homeVideosInfo2b.gif";
altHome7=new Image();
altHome7.src=homePicsPath + "homeVideosInfo1b.gif";

//********************************************************
// This function changes images to the home page 
//********************************************************
function changeHome(imageId,imageName){
	if(dom)homeImageObject=document.getElementById(imageId);
	else homeImageObject=eval("document." + imageId);
	
	homeImageObject.src=homePicsPath + imageName;
}
//-->