function doPreload() {
		var the_images = new Array(
		'http://ibee.i-dotcom.pl/images/internet_shops_active.png',
		'http://ibee.i-dotcom.pl/images/internet_shops_active_hov.png',
		'http://ibee.i-dotcom.pl/images/internet_shops_right_hov.png',
		'http://ibee.i-dotcom.pl/images/internet_marketing_norm_hov.png', 
		'http://ibee.i-dotcom.pl/images/internet_marketing_right_hov.png',
		'http://ibee.i-dotcom.pl/images/internet_marketing_left_hov.png',
		'http://ibee.i-dotcom.pl/images/systems_norm_hov.png',
		'http://ibee.i-dotcom.pl/images/systems_active_hov.png'
		);
		preloadImages(the_images);
	}
	
	function preloadImages(the_images_array) {
		for(loop = 0; loop < the_images_array.length; loop++) {
			var an_image = new Image();
			an_image.src = the_images_array[loop];
		}
	}