<!--
//This website was created by Shortbird Multimedia
//Ricochet - The Genius of the business
//Bluduck - The Incredibly Talented and Beautiful Writer
//Produck - The Trouble Loving Programmer

var imgArray = new Array();
for(var i = 0; i < 10; ++i){
	imgArray[i] = new Image();
}

imgArray[0].src ="images/home.jpg";
imgArray[1].src ="images/home_roll.jpg";
imgArray[2].src ="images/artists.jpg";
imgArray[3].src ="images/artist_roll.jpg";
imgArray[4].src ="images/services.jpg";
imgArray[5].src ="images/services_roll.jpg";
imgArray[6].src ="images/about_us.jpg";
imgArray[7].src ="images/aboutus_roll.jpg";
imgArray[8].src ="images/contact.jpg";
imgArray[9].src ="images/contact_roll.jpg";

function imgChange(theImg, newIndex, imgArr)
{
	eval("document.images." + theImg + ".src = imgArr[newIndex].src");
}
//-->