/*
Preload images script
*/

var myimages=new Array()
function preloadimages(){
for (i=0;i<preloadimages.arguments.length;i++){
myimages[i]=new Image()
myimages[i].src=preloadimages.arguments[i]
}
}


//path of images to be preloaded inside parenthesis.
preloadimages("https://cosmeticlaserstudio.com/cart/html/images/logo.gif","https://cosmeticlaserstudio.com/cart/html/images/header3.gif","https://cosmeticlaserstudio.com/cart/html/images/header_flash.jpg","https://cosmeticlaserstudio.com/cart/html/images/well.gif","https://cosmeticlaserstudio.com/cart/html/images/bar.gif","https://cosmeticlaserstudio.com/cart/html/images/bck2.gif")

