$(function() {
	
	$('.post').each(function() {
		var vert = $(this).children('h1').outerHeight();
		
		if (vert > 60 && vert <=  80) {
			$(this).children('h1').css("margin-top", "30px");
		} else if (vert >  80) {
			$(this).children('h1').css("margin-top", "20px");
		}

	})

	$('.post').live('mouseenter mouseleave', function(event) {
		if (event.type == 'mouseenter') {
			$(this).find('.show-on-hover').fadeIn(100);
		} else {
			$(this).find('.show-on-hover').fadeOut(100);	
		}
	});
		
	


})
