var MainImages = new Array()
 
//Random-loading images
MainImages[0] = '../ProdImages/ZUT-001-2.jpg' // replace with names of images
MainImages[1] = '../ProdImages/ZUT-002-2.jpg' // replace with names of images
MainImages[2] = '../ProdImages/MIL-002-2.jpg' // replace with names of images
MainImages[3] = '../ProdImages/ROC-002-index.jpg' // replace with names of images
MainImages[4] = '../ProdImages/KQO-009-index.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 class="IndexLargeImg" href ="../Scripts/prodView_apparel.asp?idproduct=577"><img src="'+MainImages[whichImage]+'" border="0" width="250" height="250" align="left" style="MARGIN: 0px 10px 0px 0px;" /></a>');
    }
    else if(whichImage==1){
    document.write('<a class="IndexLargeImg" href ="../Scripts/prodView_apparel.asp?idproduct=578"><img src="'+MainImages[whichImage]+'" border="0" width="250" height="250" align="left" style="MARGIN: 0px 10px 0px 0px;" /></a>');
    }
    else if(whichImage==2){
    document.write('<a class="IndexLargeImg" href ="../Scripts/prodView_apparel.asp?idproduct=589"><img src="'+MainImages[whichImage]+'" border="0" width="250" height="250" align="left" style="MARGIN: 0px 10px 0px 0px;" /></a>');
    } 
    else if(whichImage==3){
    document.write('<a class="IndexLargeImg" href ="../Scripts/prodView_apparel.asp?idproduct=684"><img src="'+MainImages[whichImage]+'" border="0" width="250" height="250" align="left" style="MARGIN: 0px 10px 0px 0px;" /></a>');
    }
    else if(whichImage==4){
    document.write('<a class="IndexLargeImg" href ="../Scripts/prodView_apparel.asp?idproduct=585"><img src="'+MainImages[whichImage]+'" border="0" width="250" height="250" align="left" style="MARGIN: 0px 10px 0px 0px;" /></a>');
    }
}
