$(window).resize(function() {
  	width();
});

$(document).ready(function(){
	width();
	$('#contentBox').hide();
	$('#rightContentBox').hide();
	$('#leftContentBox').hide();
	$('#wideContentBox').hide();
	
	$('#contentBox').fadeIn(1000);
	$('#rightContentBox').delay(500);
	$('#rightContentBox').fadeIn(1000);
	$('#leftContentBox').delay(500);
	$('#leftContentBox').fadeIn(1000); 
	$('#wideContentBox').delay(500);
	$('#wideContentBox').fadeIn(1000);
});

function width() {
	var $viewWidth = $(window).width();
	
	$('body').width($viewWidth);
	$('#mainContainer').width($viewWidth);
};
