/*
	Preload images script
*/
var myimages=new Array()
function preloadimages(){
	for (i=0;i<preloadimages.arguments.length;i++){
		myimages[i]=new Image()
		myimages[i].src=preloadimages.arguments[i]
		}
}
//Enter path of images to be preloaded inside parenthesis. Extend list as desired.
preloadimages("graphics/about-over.gif",
			"graphics/button-nav-bg-end-over.gif",
			"graphics/button-nav-bg-over.gif",
			"graphics/contactus-over.gif",
			"graphics/eyetoeye-over.gif",
			"graphics/new_patient-over.gif",
			"graphics/requestanappointment-over.gif")