

function splash_image_resize()
{
	var splash_image = jQuery("#splash");
	
	//splash_image.css("width", "").css("height", "");

	//var w = splash_image.attr("width");
	//var h = splash_image.attr("height");
			
	if (!splash_image.data('original_width')) {
		splash_image.data('original_width', splash_image.width());
		splash_image.data('original_height', splash_image.height());
	}
	
	var w = splash_image.data('original_width');
	var h = splash_image.data('original_height');
	
	var r = w/h;
	
	var window_w = jQuery(window).width();
	var window_h = jQuery(window).height();
	
	if(window_h<710) window_h = 710;
	
	var window_r = window_w/window_h;

	var new_w; var new_h;
  
  new_h = window_h
	new_w = window_h*r
	
	//splash_image.css("width", new_w).css("height", new_h);
	
	splash_image.width(new_w).height(new_h);
	document.getElementById('splash').style.display='';
}

