var infocube = new function(){
	this.setBannerWidth = function(){
		$('.bannerBG').css('left', 0);
		$('.bannerBG img').css('position', 'static');
		var bannerWidth = $('body').outerWidth(true);
		if( bannerWidth < 960){ bannerWidth = 960}
		$('.bannerBG img').css('width', bannerWidth);
	}
}

$(window).resize(function() {
	infocube.setBannerWidth();
});

