	function resize_screen_load()
	{
		var maxh = Math.max($("#LeftColumn").height() + 39, $("#ContentsContainer").height() +39, $(window).height()-50);
		var maxl = $("#LeftMenuContainer").height();

		var maxtm = 641;
   	 	
		$("#LeftColumn").height(maxh - 39);
		$("#ContentsContainer").height(maxh - 39);
   		$("#Shadow").height(maxl -124);
		$("#LeftMenuContainer").height(maxh - 116);
		
		$("#TopMenuContainer a").each(function (i) 
		{
			maxtm -= $(this).innerWidth();
		});

		$("#TopMenuContainer span").each(function (i) 
		{
			maxtm -= $(this).innerWidth();
		});

	  	$("#TopMenuSpacer").width(maxtm);
	}
	
	function preload_images() 
	{
		var preloaded = new Array();
	    for (var i = 0; i < arguments.length; i++)
		{
	        preloaded[i] = document.createElement('img');
	        preloaded[i].setAttribute('src', arguments[i]);
	    }
	}
