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