//Created 11/20/01 Kenneth Fly http://hsc.usf.edu/~kfly
//This function is used to preload images into a browser
//during loading so that that they may be used in the 
//future speedy image changes or dynamic effects. The
//function accepts one variable which is a comma
//delimited string of all the URL's (full or partial)
//that need to be preloaded. The function does not
//return any values. 
function preloadimages(imagesstring){
 var imagesarray;
 var count;
 imagesarray=imagesstring.split ("casino_001.jpg","backgr10.jpg","flag_euro_currency.gif","flag_multi_countries.gif","flag_multilingual.gif","flag_russian_36x18.gif","flag_sa.gif","BritishCasinos_topback.jpeg","arab_emirates.gif","sunny.png","goldnugget_125x125.gif","grandhotel_125x125.gif","flamingo_125-2.gif","aspinalls_125x125.gif","http://www.captaincookscasino.com/AffBanners/234x60_Banner3.gif","http://gateway.fortunelounge.com/copy/7s/banners/7sc_234x60_3.gif","http://www.luckyfelt.net/copy/dd/banners/Ddc_88_31_137_1.gif","http://www.affiliatebannerfarm.com/vegaspartner/banners/crazyvegas/88x31/88x31_1.gif","http://www.affiliatebannerfarm.com/vegaspartner/banners/sunvegas/88x31/88x31_1.gif","http://www.captaincookscasino.com/AffBanners/100x500_Banner3.gif","http://ads.goldenstarnetwork.com/bv.aspx?affId=891&bannerId=378","http://www.cashforclicks.com/freegames/cfc-lemonslots.jpg","http://www.ClickedyClick.com/ads/jpc/jpc_160x600_009.gif","clubdice_160x600_33.gif");

 
 for(count=0;count<imagesarray.length;count++){
 newimage=new Image();
 newimage.src=imagesarray[count];
 }
} 