 	$(function(){
 	
		$('div.left_column p').each(
			function(i) 
			{
				var nextSib = $(this).next();
				if ($(nextSib).is(':header')) $(this).addClass('pseudoSelect');	
			}
		);
    	
  	});