// IMAGE PRELOADER

var myImages = new Array(
"images/background_page_top.gif", 
"images/background_page_middle.gif", 
"images/logo_window_world_header.jpg", 
"images/header_image.jpg", 
"images/background_navigation.jpg",
"images/background_navigation_bottom.gif",
"images/background_page_bottom.gif"
);
var myPreload = new Array(); 
for(var i = 0; i < myImages.length; i++ ){ 
	myPreload[i] = new Image(); 
	myPreload[i].src = myImages[i];
}