$(document).ready(function() {		resize();		var image = new Image();	image.onload = function() {		$('#image-bg img').fadeIn('slow');	};	image.src = $('#image-bg img').attr("src");	$(window).bind('resize', resize);});function resize(){	var winWidth = $(window).width();	var winHeight = $(window).height();		var imageWidth = $('#image-bg img').width();	var imageHeight = $('#image-bg img').height();	var r = imageWidth/imageHeight;	var newImageWidth = winWidth;	var newImageHeight = Math.ceil(winWidth/r);	if(newImageHeight<winHeight)	{		newImageHeight = winHeight;		$('#image-bg img').css("width", "");		$('#image-bg img').css("height", newImageHeight);	}	else	{		$('#image-bg img').css("width", newImageWidth);		$('#image-bg img').css("height", "");	}		}
