<!-- hide script from old browsers

var theImages = new Array()

//Random-loading images
theImages[0] = 'Images/Header_Dog_01.jpg' // replace with names of images
theImages[1] = 'Images/Header_Dog_02.jpg' // replace with names of images
theImages[2] = 'Images/Header_Dog_03.jpg' // replace with names of images
theImages[3] = 'Images/Header_Dog_04.jpg' // replace with names of images
theImages[4] = 'Images/Header_Dog_05.jpg' // replace with names of images
theImages[5] = 'Images/Header_Dog_06.jpg' // replace with names of images
theImages[6] = 'Images/Header_Dog_07.jpg' // replace with names of images
theImages[7] = 'Images/Header_Dog_08.jpg' // replace with names of images
theImages[8] = 'Images/Header_Dog_09.jpg' // replace with names of images
theImages[9] = 'Images/Header_Cat_01.jpg' // replace with names of images
theImages[10] = 'Images/Header_Cat_02.jpg' // replace with names of images
theImages[11] = 'Images/Header_Cat_03.jpg' // replace with names of images
theImages[12] = 'Images/Header_Dog_10.jpg' // replace with names of images

var j = 0
var p = theImages.length;
var preBuffer = new Array()

for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
if(whichImage==0){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==1){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==2){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==3){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==4){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==5){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==6){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==7){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==8){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==9){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==10){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==11){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}
else if(whichImage==12){
document.write('<img src="'+theImages[whichImage]+'" border=0></a>');
}

}

// end hiding script from old browsers -->
