function resize() {

	var viewportWidth = $(window).width();
	if (viewportWidth < 984) {
	$("#container").width(714);
	$(".footerbreak").width(714);
	$(".image img").width(714);
	} 

	else {
	$("#container").width(984);
	$(".footerbreak").width(960);
	$(".image img").width(960);
	}
}

$(document).ready(function() {resize();});
$(window).resize(function() {resize();});
