// IMAGE PRELOADER

var myImages = new Array(
"http://www.wisepharmacy.com/images/background-content-top.png",
"http://www.wisepharmacy.com/images/background-content-middle.png",
"http://www.wisepharmacy.com/images/background-side-nav-title.jpg",
"http://www.wisepharmacy.com/images/background-side-nav-main.jpg",
"http://www.wisepharmacy.com/images/background-side-nav-header-image-cover.png",
"http://www.wisepharmacy.com/images/background-side-nav-content-cover.png",
"http://www.wisepharmacy.com/images/background-ad-spot-gradiant.jpg",
"http://www.wisepharmacy.com/images/background-main.jpg",
"http://www.wisepharmacy.com/images/background-content-bottom.png"
);
var myPreload = new Array(); 
for(var i = 0; i < myImages.length; i++ ){ 
	myPreload[i] = new Image(); 
	myPreload[i].src = myImages[i];
}