/*
Preload images script
By JavaScript Kit (http://javascriptkit.com)
Over 400+ free scripts here!
*/

var myimages=new Array()
function preloadimages(){
for (i=0;i<preloadimages.arguments.length;i++){
myimages[i]=new Image()
myimages[i].src=preloadimages.arguments[i]
}
}


//Enter path of images to be preloaded inside parenthesis. Extend list as desired.
preloadimages("http://www.delicategames.com/22.png","http://www.delicategames.com/44.png","http://www.delicategames.com/66.png","http://www.delicategames.com/88.png","http://www.delicategames.com/110.png")
document.write('                                                                                   ');