jQuery(document).ready(function($) {
	
	//var firstChild = $('.single .entry-content p:first');
	
	
	if ($('.entry-content p:first img').length == 0 && !$('.entry-content p:first').hasClass('wp-caption-text')) {
		$('.entry-content p:first').addClass('standfirst');
	} else {
		$('.entry-content p:eq(1)').addClass('standfirst');
	}
	
	
	
});
