jQuery(function($){

	/* Fixing list last elements */
	$(".links-list li:last-child, .category-list li:last-child").each(function(){
		$(this).addClass("last");
	});
	
	/* add shadow to all posts */
	$(".dflt-post-elem").append('<div class="post-shadow"><img src="http://link-wordpress.com/wp-content/themes/linkpress-nova/i/post-shadow.png" width="936" height="24" /></div>');
	
});