var MainImages = new Array() //Random-loading imagesMainImages[0] = '../UserMods/img/index_puzzles.jpg' // replace with names of imagesMainImages[1] = '../UserMods/img/index_electronic.jpg' // replace with names of imagesMainImages[2] = '../UserMods/img/index_active.jpg' // replace with names of imagesMainImages[3] = '../UserMods/img/index_games.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=222"><img src="'+MainImages[whichImage]+'" border=0 width=666 height=403></a>');    }    else if(whichImage==1){    document.write('<a href ="../Scripts/prodList.asp?idcategory=210"><img src="'+MainImages[whichImage]+'" border=0 width=666 height=403></a>');    }    else if(whichImage==2){    document.write('<a href ="../Scripts/prodList.asp?idcategory=217"><img src="'+MainImages[whichImage]+'" border=0 width=666 height=403></a>');    }     else if(whichImage==3){    document.write('<a href ="../Scripts/prodList.asp?idcategory=212"><img src="'+MainImages[whichImage]+'" border=0 width=666 height=403></a>');    }} 
