jQuery(document).ready(function(){

	if (jQuery('.entry *:first').is('h1,h2,h3,h4,h5')) {
		jQuery('.entry *:first').css("cssText", "margin-top: 0 !important;");
		
	}
  	

	jQuery('li:first-child').addClass('first-item');  
	jQuery('li:last-child').addClass('last-item');  
	
	jQuery("table tbody tr:nth-child(odd)").addClass("odd");
	jQuery("table tbody tr:nth-child(even)").addClass("even");
	
	

});