/* 	http://www.i2studios.com
	Copyright (c) 2004 i2 STUDIOS, Sweden
	Last modified 2004 01 24 by Robert Karlsson <robert /AT/ i2studios.com>
*/
var preloaded_image = new Array();
function startPreload(){	
	var image_array = new Array(
		'/images/bottom_search_on.gif',
		'/images/bottom_search_off.gif',

		'/images/bottom_site_map_on.gif',
		'/images/bottom_site_map_on.gif',

		'/images/bottom_contact_on.gif',
		'/images/bottom_contact_off.gif',

		'/images/bottom_login_on.gif',
		'/images/bottom_login_off.gif',

		'/images/bottom_home_on.gif',
		'/images/bottom_home_off.gif',
		
		'/images/bottom-bubble-site_map-on.gif',
		'/images/bottom-bubble-site_map-off.gif',
		
		'/images/bottom-bubble-search-on.gif',
		'/images/bottom-bubble-search-off.gif',
		
		'/images/bottom-bubble-contact-on.gif',
		'/images/bottom-bubble-contact-off.gif',
		
		'/images/bottom-bubble-login-on.gif',
		'/images/bottom-bubble-login-off.gif',

		'/images/top_about_off.gif',
		'/images/top_about_on.gif',
		'/images/top_about_active.gif',
			'/images/top_about_what_on.gif',
			'/images/top_about_what_off.gif',
			'/images/top_about_news_on.gif',
			'/images/top_about_news_off.gif',
			'/images/top_about_contact_on.gif',
			'/images/top_about_contact_off.gif',
			'/images/top_about_portfolio_on.gif',
			'/images/top_about_portfolio_off.gif',


		'/images/top_resources_off.gif',
		'/images/top_resources_on.gif',
		'/images/top_resources_active.gif',
			'/images/top_resources_textures-on.gif',
			'/images/top_resources_textures_off.gif',
			'/images/top_resources_tutorials_on.gif',
			'/images/top_resources_tutorials_off.gif',
			'/images/top_resources_3d_models_on.gif',
			'/images/top_resources_3d_models_off.gif',
			'/images/top_resources_webdev_on.gif',
			'/images/top_resources_webdev_off.gif',
			'/images/top_resources_links_on.gif',
			'/images/top_resources_links_off.gif',


		'/images/top_gallery_off.gif',
		'/images/top_gallery_on.gif',
		'/images/top_gallery_active.gif',
			'/images/top_gallery_images_on.gif',
			'/images/top_gallery_images_off.gif',
			'/images/top_gallery_animations_on.gif',
			'/images/top_gallery_animations_off.gif',
			'/images/top_gallery_webdesign_on.gif',
			'/images/top_gallery_webdesign_off.gif',
			'/images/top_gallery_graphic_design_on.gif',
			'/images/top_gallery_graphic_design_off.gif',

		'/images/top_projects_off.gif',
		'/images/top_projects_on.gif',
		'/images/top_projects_active.gif',
			'/images/top_projects_vis_on.gif',
			'/images/top_projects_vis_off.gif',
			'/images/top_projects_texture_on.gif',
			'/images/top_projects_texture_off.gif',
			'/images/top_projects_dictionary_on.gif',
			'/images/top_projects_dictionary_off.gif',
			'/images/top_projects_3dwm_on.gif',
			'/images/top_projects_3dwm_off.gif');
	preloadImages(image_array);
}

function preloadImages(every_image) {
	for(i = 0; i<every_image.length; i++) {
		preloaded_image[i] = new Image();
		preloaded_image[i].src=every_image[i];
	}
	
}