/**
 * @author bdgeorge
 * Image preloader for Craven images weddings
 * Preloads all jpg based on thumbnail jpgs found in the #right_weddings box
 * thumbnails must end in "_t.jpg"
 * 08/10/2008
 */
//Find all images in right_weddings
$(document).ready(function(){
	imgPreArray=[];
	$("#right_weddings img").each(function(i){
		imgPreArray[i] =new Image;
		imgPreArray[i].src=$(this).attr("src").replace("_t.jpg",".jpg");
		
	});
});