$(document).ready(function() {
	//Check to see if there is an image or slideshow on the page
		var $first_block = $(".zone > .block:first > .columns1:first");
		if($first_block.length > 0 && $first_block.find('img').height() > 200 || $first_block.children().hasClass("slidedeck") || $first_block.children().hasClass("carousel-container")){
			$("body").addClass("feature-background");
		}
		else if($('.col_primary > article > h1 + img').length > 0 && $('.col_primary > article > h1 + img').height() > 200){
			$("body").addClass("feature-background");
		}
		else{
			$("body").removeClass("feature-background");
		}
});
