$(document).ready(function() {		
	function sixCallouts() {
		if( $("body").hasClass('screen_awesome')  ) {
			$('.home-callout-wrap').css('width', '49%');
			$('.home-callout-wrap').css('clear', 'none');
			$('#hc-wrap-top').css('margin-right', '1%');
			$('#hc-wrap-bottom').css('margin-left', '1%');
		}else {
			$('.home-callout-wrap').css('width', '100%');
			$('.home-callout-wrap').css('clear', 'both');
			$('#hc-wrap-top').css('margin-right', '0px');
			$('#hc-wrap-bottom').css('margin-left', '0px');
		}
	}
	
	$(window).resize(function() {
		sixCallouts();
	});
	
	$(window).load(function() {
		sixCallouts();
	});
});
