var MainImages = new Array()
 
//Random-loading images
MainImages[0] = '../UserMods/index_img_bath.jpg' // replace with names of images
MainImages[1] = '../UserMods/index_img_feed.jpg' // replace with names of images
MainImages[2] = '../UserMods/index_img_nap.jpg' // replace with names of images
MainImages[3] = '../UserMods/index_img_gifts.jpg' // replace with names of images
var j = 0
var p = MainImages.length;
var preBuffer = new Array()
 
for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = MainImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
 
function showMainImage(){
    if(whichImage==0){
    document.write('<a href ="../Scripts/prodList.asp?idCategory=22"><img src="'+MainImages[whichImage]+'" border=0 width=752 height=250></a>');
    }
    else if(whichImage==1){
    document.write('<a href ="../Scripts/prodList.asp?idCategory=21"><img src="'+MainImages[whichImage]+'" border=0 width=752 height=250></a>');
    }
    else if(whichImage==2){
    document.write('<a href ="../Scripts/prodList.asp?idCategory=27"><img src="'+MainImages[whichImage]+'" border=0 width=752 height=250></a>');
    } 
    else if(whichImage==3){
    document.write('<a href ="../Scripts/prodList_gifts.asp?idCategory=20"><img src="'+MainImages[whichImage]+'" border=0 width=752 height=250></a>');
    }
}

