// IMAGE PRELOADER

var myImages = new Array(
"http://www.keoweefamilydentistry.com/images/logo-keowee-family-dentistry.gif",
"http://www.keoweefamilydentistry.com/images/background-side-nav-title.jpg",
"http://www.keoweefamilydentistry.com/images/background-side-nav.jpg",
"http://www.keoweefamilydentistry.com/images/background-content.jpg",
"http://www.keoweefamilydentistry.com/images/background-right-column.jpg",
"http://www.keoweefamilydentistry.com/images/image-call-us-today.jpg",
"http://www.keoweefamilydentistry.com/images/image-or-icon.jpg",
"http://www.keoweefamilydentistry.com/images/image-request-an-appointment.jpg",
"http://www.keoweefamilydentistry.com/images/image-new-patients-welcome.gif"
);
var myPreload = new Array(); 
for(var i = 0; i < myImages.length; i++ ){ 
	myPreload[i] = new Image(); 
	myPreload[i].src = myImages[i];
}