$(document).ready(function() {

			$('#avatar a').corner('round 5px')
			$('.tab').corner('round tr br 5px')

			var mainHeight = $('#mainCol').height() - 285

			if ($('#follow').height() > $('#mainCol').height()) {
				$('#follow').height(mainHeight)
				$('#hide').css('display','block')
			}
			
			$('.post').each(function (i) {

				var tabHeight = $('.side',this).height() - 43

				if ($('.content',this).innerHeight() < tabHeight) {
					$(this).addClass('shorten')
					$('.time',this).css('display','none')
				}
			});

			$('p:last-child','.content').css('margin-bottom','0')
			$('p:last-child','.content blockquote').css('margin-bottom','0')
			$('p:last-child','.content .caption').css('margin-bottom','0')

});