// IMAGE PRELOADER

var myImages = new Array(
"http://www.brotherscleaners.com/images/background_main.jpg", 
"http://www.brotherscleaners.com/images/background_navigation.jpg", 
"http://www.brotherscleaners.com/images/background_content.jpg", 
"http://www.brotherscleaners.com/images/logo_brothers_cleaners.jpg", 
"http://www.brotherscleaners.com/images/nav_button_home_off.gif", 
"http://www.brotherscleaners.com/images/nav_button_about_us_off.gif", 
"http://www.brotherscleaners.com/images/nav_button_services_off.gif", 
"http://www.brotherscleaners.com/images/nav_button_locations_off.gif", 
"http://www.brotherscleaners.com/images/nav_button_care_tips_off.gif", 
"http://www.brotherscleaners.com/images/nav_button_specials_off.gif", 
"http://www.brotherscleaners.com/images/nav_button_contact_us_off.gif", 
"http://www.brotherscleaners.com/images/nav_button_preferred_club_off.gif", 
"http://www.brotherscleaners.com/images/nav_button_home_on.gif", 
"http://www.brotherscleaners.com/images/nav_button_about_us_on.gif", 
"http://www.brotherscleaners.com/images/nav_button_services_on.gif", 
"http://www.brotherscleaners.com/images/nav_button_locations_on.gif", 
"http://www.brotherscleaners.com/images/nav_button_care_tips_on.gif", 
"http://www.brotherscleaners.com/images/nav_button_specials_on.gif", 
"http://www.brotherscleaners.com/images/nav_button_contact_us_on.gif", 
"http://www.brotherscleaners.com/images/nav_button_preferred_club_on.gif"
);
var myPreload = new Array(); 
for(var i = 0; i < myImages.length; i++ ){ 
	myPreload[i] = new Image(); 
	myPreload[i].src = myImages[i];
}