// IMAGE PRELOADER

var myImages = new Array(
	"http://www.dunwoodypharmacy.com/images/background-main-gradient.png",
	"http://www.dunwoodypharmacy.com/images/background-body-middle.png",
	"http://www.dunwoodypharmacy.com/images/background-phone-number-container.gif",
	"http://www.dunwoodypharmacy.com/images/background-top-nav-middle.png",
	"http://www.dunwoodypharmacy.com/images/background-top-nav-cap-left.png",
	"http://www.dunwoodypharmacy.com/images/background-top-nav-cap-right.png",
	"http://www.dunwoodypharmacy.com/images/background-top-nav-spacer.png",
	"http://www.dunwoodypharmacy.com/images/background-body-bottom.png"
);
var myPreload = new Array(); 
for(var i = 0; i < myImages.length; i++ ){ 
	myPreload[i] = new Image(); 
	myPreload[i].src = myImages[i];
}
