/* ===== for #content h2 add span class="white" ===== */

$(function h2_white(){
	$('#content p').wrapInner('<span class="white" />');
});

/* ===== get rid of background image on video page ===== */
$(function unhintergrund() {
	$('body.page-id-217 #hintergrund').empty();
	});
	
/* ===== for after h3 and h4 headings to get them on a new line ===== */

$(function breakline() {
	$('h3').after('<div class=".clearfix"></div>');
	});
