<!-- Hide this script from old browsers --

images = new Array();
images[0] = "graphics/img01.jpg"
images[1] = "graphics/img02.jpg"
images[2] = "graphics/img03.jpg"
images[3] = "graphics/img04.jpg"
images[4] = "graphics/img05.jpg"
images[5] = "graphics/img06.jpg"
images[6] = "graphics/img07.jpg"
images[7] = "graphics/img08.jpg"
images[8] = "graphics/img09.jpg"
images[9] = "graphics/img10.jpg"

//More images can be added following the same format.
//The script will automatically adapt for more images.


function RandElement(IList)
{
   return(IList[Math.round(Math.random()*(IList.length-1))]);
}

// -- End Hiding Here -->