$(document).ready(function(){

	/* Reduce a p margin if it only contains an image
	-------------------------------------------------------------- */

	$('div.post div.content p').each(function(){
	
		nestedElements = $(this).children();
		
		if (nestedElements.length==1)
		{
			element = nestedElements[0];
			
			if (element.tagName=="IMG")
				$(this).css('margin-bottom', '0px');
		}
			
	
	});
	
	/* Autogrow textareas for comments
	-------------------------------------------------------------- */
	
	$('#comments form textarea').autogrow();
	
	
	/* Trim the archive dropdown down to size
	-------------------------------------------------------------- */
	
	var t = $('#archive-dropdown');
	t.after(t.clone().empty().append('<option>Earlier...</option>').append(t.find('option').slice(13))).remove();

	
});
