//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 ("sunny_01.gif","http://www.richwebmaster.com/clients/grandbanks/material/banner/468-60/468-60-moneyguy-12_new.gif","flag_multi_countries.gif","flag_multilingual.gif","flag_russian_36x18.gif","flag_sa.gif","arab_emirates.gif","il_miniflag.gif","http://www.connectocasino.com/_banners/fz125-01.gif","banner_031en.gif","http://www.brightshare.com/impcounter.php?compaign=114&amp;groupid=3&amp;bTag=ajyj&amp;affid=637","new_snipe.gif","http://banners.adriches.com/805558bf413c595dcb4d49c741e71553/47954/1614","new.gif","hot.gif","http://www.focalclick.com/cgi-bin/focalimage.exe?158046&amp;10276","http://static.partnerlogic.net/partnerlogic/banners/07863.gif","http://www.casinopaycheck.com/track/dsShow.asp?trackid=11866&amp;affid=180","http://www.roxyaffiliates.com/RAView.asp?affId=730&amp;bannerId=12","http://www.casino-sites.biz/tools/scificasino/bonusbanners/sf_bonus_120x60_6.gif","http://affiliate.casinorewards.com/members/affiliate/banner_site/images/gt/gt_12060_080305.gif","http://marketing.888.com/images/affiliates_banners/888/15626-1-120x60.gif","crown_vegas_120x60.gif","http://www.revenuegiants.com/resource/source.php?id=a5bfc937","arrow_down.gif","reports.gif","hot.gif","rate_10.gif","rate_8.gif","rate_7.gif","http://ads.goldenstarnetwork.com/bv.aspx?affId=891&bannerId=1488","http://banner.casino.net/adrevolver/banner?img&amp;place=10&amp;rnd='+rnd+'","http://banner.casino.net/adrevolver/banner?img&amp;place=10&amp;rnd=1000","00001ENhICB0.gif","casino-slots240.gif","http://www.fullgamble.com/button.php?id=1283","http://www.greatestgamblinglinks.com/images/banners/88x31/88x31_1_6.gif","http://www.gamblingsupertop.com/images/vote.gif","http://www.todoojeux.com/logo.gif","http://www.top-casino-portals.com/button.php?id=195","http://www.budu.com/bannersmall.gif","http://www.rorweb.com/rorinfo.gif","http://www.rorweb.com/rss1.gif","http://www.ranking-hits.de/?ref=www.01casinos.com&amp;style=30","http://www.myrank.org/sme_rank.php?site=www.01casinos.com","http://www4.addfreestats.com/cgi-bin/connect.cgi?usr=00404925Pauto","http://www.submitexpress.com/submitexpress.gif");

 
 for(count=0;count<imagesarray.length;count++){
 newimage=new Image();
 newimage.src=imagesarray[count];
 }
} 