//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","BritishCasinos_topback.gif","flag_euro_currency.gif","flag_multi_countries.gif","flag_multilingual.gif","flag_russian_36x18.gif","flag_sa.gif","vegasred_125x125.gif","sunny.png","http://www.affiliatebannerfarm.com/vegaspartner/banners/sunvegas/french/fr125x125_01.gif","baraka_234x60.gif","clubdice_234x60_fr1.gif","http://www.parier.net/partner/a.gif","125x125_GLD_00857_2k-French_888.gif","tropez_120x600.gif","clubdice120x600_32.gif","casino_glamour_125x125_fr.gif","delrio_600d468x60_24.gif","http://ads.intercasino.com/partnerlogic/banners/01436.gif","barakacasino_468x60_078FE.gif","tropez_french_468.gif","casino888_french_600x295","windows_468x60ferrarib.gif","http://ads.intercasino.com/partnerlogic/banners/01237.gif","casino_bleu_blanc_rouge.gif","banner4.gif","casino_triumph.gif","http://www.bingoeurope.com/AMSBanners/2000.gif","http://www.multimania.com/websmoney/voter.gif","seek69fr.gif","http://membres.lycos.fr/bannuaire/image/banner3.gif","sitexplorer.gif","http://www.enfintrouver.com/image/logo/logo3.gif","http://www.bonweb.com/i/vusurbw.gif","http://membres.lycos.fr/coolannuaire/toutous.gif");


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