	$(document).ready(function()
	{
		resizeImage();
		$(window).bind('resize', function()
		{
			resizeImage();
		});
	}
	);
	
	function resizeImage()
	{
		var windowW = $(window).width();
		
		$("#bg").width(windowW);
	}