
jQuery(document).ready(function()
{
	//jQuery('body').prepend('<div style="position: absolute; top: 0pt; left: 0pt; height: 100%; overflow: hidden; z-index: -1;"><img id="bg" src="img/1.jpg" style=""> </div>');
	resizeImage();
	jQuery(window).bind('resize', function()
	{
		resizeImage();
	});
});

function resizeImage()
{
	var windowH = jQuery(window).height();
	jQuery("#bg img").height(windowH);
	//alert(windowH);
	//jQuery("#bg").width(windowW);
}
