// IMAGE PRELOADER

var myImages = new Array(
"http://www.officeguidenetwork.com/images/background_main.jpg", 
"http://www.officeguidenetwork.com/images/background_content_top.gif", 
"http://www.officeguidenetwork.com/images/background_content_middle.gif", 
"http://www.officeguidenetwork.com/images/background_header.gif", 
"http://www.officeguidenetwork.com/images/logo_office_guide_network1.jpg", 
"http://www.officeguidenetwork.com/images/button_start_your_search_off.jpg", 
"http://www.officeguidenetwork.com/images/button_start_your_search_on.jpg", 
"http://www.officeguidenetwork.com/images/background_navigation_bar.gif", 
"http://www.officeguidenetwork.com/images/background_content_bottom.gif", 
"http://www.officeguidenetwork.com/images/logo_office_guide_network2.gif"
);
var myPreload = new Array(); 
for(var i = 0; i < myImages.length; i++ ){ 
	myPreload[i] = new Image(); 
	myPreload[i].src = myImages[i];
}
