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