if (document.images){
	
	//Default image object
	var imgObj = new Image();
	
	//Array of image sources
	var image = new Array();
		image[0] = "../images/bg.jpg";
		image[1] = "../images/bg_Bottom.png";
		image[2] = "../images/bg_Filler.png";
		image[3] = "../images/bg_Top.png";
		image[4] = "../images/left.gif";
		image[5] = "../images/right.gif";
		image[6] = "../images/membershipPlan.gif";
		image[7] = "../images/membershipPlan_over.gif";
		image[8] = "..images/patientForms.gif";
		image[9] = "..images/patientForms_over.gif";
		image[10] = "..images/whyDeco.gif";
		image[11] = "..images/whyDeco_over.gif";
		
	//Function to preload all images in array
	for (i=0; i<=11; i++){
		imgObj.src = image[i];
		}
	}
