jQuery(document).ready(function(){

	// add 10px margin to the end of all paragraphs followed by a h1, h2, h3 or h4
	jQuery('h1,h2,h3,h4').each(function(){
		jQuery(this).prev('p').css('margin-bottom', '10px');
	});
});
