/* ####################### begins list of images to be used ####################### */

currentIndx=0;
MyImages=new Array();

MyImages[3]='picts/home.jpg';


/* ####################### now we preload the images ####################### */

imagesPreloaded = new Array(10)
for (var i = 0; i < MyImages.length ; i++)
{
imagesPreloaded[i] = new Image(750,80)
imagesPreloaded[i].src=MyImages[i]
}

/* ####################### this function loads a random image ####################### */

function newImage(){
currentIndx=Math.round(Math.random()*9)
document.theImage.src=imagesPreloaded[currentIndx].src
}


//Hide status bar msg II script- by javascriptkit.com
//Visit JavaScript Kit (http://javascriptkit.com) for script
//Credit must stay intact for use

function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
