// JavaScript Document
<!--
function doPreload()
{

   var the_images = new Array('images/servic97.gif','images/scroll2.gif','images/thumb-simpleelegange.jpg','images/servic81.gif','images/thumb_sheer-joy.jpg','images/dividr_wht65.gif','images/thumb-sheer-beauty.jpg','images/thumb_weddingflowersinspiration.jpg','images/dividr_blk64.gif','images/thumb_blossom.jpg','images/thumb_blush.jpg','images/thumb_stripes_green.jpg','images/thumb_stripes_red.jpg','images/thumb_timelessorchids.jpg','images/thumb_whatgreaterthing.jpg','images/thumbwhimsy.jpg','images/thumbcharm.jpg','images/celbrte_thumbnailtemp.jpg',/*end samples page 1*/
'images/wedding-details65534.gif','images/weddin6ceremony.gif','images/weddin7reception.gif','images/weddin555.jpg','images/schedu23.gif','images/schedu20.jpg','images/wedding-itin3348.gif','images/apprec29.jpg','images/weddin21.gif','images/weddin31.jpg','images/ourvows223434.gif','images/our-we14.gif','images/our-we22.jpg','images/our-we15.gif','images/our-po22.gif','images/our-po24.gif','images/our-po24.jpg','images/apprec18.gif','images/apprec19.jpg','images/apprec19.gif','images/apprec20.gif'/*End Sheer Beauty*/);
   preloadImages(the_images);
}

function preloadImages(the_images_array) {

   for(var loop = 0; loop < the_images_array.length; loop++)
	
   {
 	var an_image = new Image();
	an_image.src = the_images_array[loop];
   }
}
//-->