/* -----------------------------------------------
   Image Preloader - v.1.1
   (c) 2007 www.haan.net
   contact: jeroen@haan.net
   You may use this script but please leave the credits on top intact.
   Please inform us of any improvements made.
   When usefull we will add your credits.
  ------------------------------------------------ */

<!--

function preload(pics)
{
	var rollovers = new Array();
	//var pics = preload.arguments;
	for(i=0;i<pics.length;i++)
	{
		rollovers[i] = new Image();
		rollovers[i].src = pics[i];
		// uncomment next line to test stuff, click OK to continue loop and cancel to break
		// if(!confirm(brochure[i].src)) break;
	}
}
// call the function with the list of images (unique part of names)
window.onload = function()
{
	pics = Array('http://www.supportourpoops.org/images/header_back_ov.gif','http://www.supportourpoops.org/images/home_buy_ov.gif','http://www.supportourpoops.org/images/buttons_buy_ov.gif');
	preload(pics);
}

//-->