jQuery(document).ready(function () {

	jQuery("#posts .section").each(function (i, element) {
		
		var last_post = jQuery(element).children('.post:last');
		last_post.css({'background-image': 'none', 'padding-bottom': '0'});
		
	});
	
	jQuery("#sidebar ul li ul").each(function (i, element) {
		
		var last_link = jQuery(element).children('li:last');
		last_link.css({'padding-bottom': '5px'});
		
	});
	
	jQuery("#archive-menu").hover(function () {
		
		jQuery(this).children('ul').css('display', 'block');
		
	}, function () {
		
		jQuery(this).children('ul').css('display', 'none');
		
	});
	
	jQuery("#sidebar li:last-child").css('border-bottom', 'none');
	
});
