﻿
$(function(){

	function resizeImg(){
		xWidth = $('html').width();
		xHeight = $('html').height();
		contHgt = $('#container2').height();

		if (jQuery.browser.msie) {
			if(jQuery.browser.version == 7) {
				$('#bgImg').css('width',xWidth).css('height',xHeight).css('overflow-y','hidden');
			}else{
				$('#bgImg').css('width',xWidth-20 + 'px').css('height',xHeight).css('overflow-y','hidden');
			}
		}else{
			$('#bgImg').css('width',xWidth).css('height',xHeight).css('overflow-y','hidden');
		}
		$('#bgImg img').attr('width',xWidth);
	}

	resizeImg();

	$(window).bind('resize', resizeImg);

});

