// On load
$(document).ready(function() {
	
	// Show comments
	if($('.post').length > 0){
		$('.post').hover(  
			function() {  
				$(this).find('li.hide').show();
			},
			function() {  
				$(this).find('li.hide').hide();
			}
		);
	}
	
	// nth Child fix
	$("ul.showcase li:nth-child(4n)").addClass("last");
	$("ul.showcase li:nth-child(4n+1)").addClass("clear");
	$("#commentform p:last-child").addClass("last");
});
