jQuery(document).ready(function(){
	
	//Add <span> to navigation items (For hover images)
	
	jQuery("ul#nav li a").each(function(){

	var inner_content = jQuery(this).html();
		jQuery(this).html('<span>' + inner_content + '</span>');
	})
	
	//REMOVE borders
	
	jQuery("li.comment:first-child").css("border-top","0");
	
	if(jQuery.trim(jQuery('.footer-widgets').text()) == ''){jQuery('.footer-widgets').remove();}
	if(jQuery.trim(jQuery('.more_entries').text()) == ''){jQuery('.more_entries').remove();}
	

});