jQuery(function($){
	
	$('select').dropMe();
	
	$('a.author-more').hover(function(){
		$container = $(this).parents('div.author-image');
		$('div.author-more-posts', $container).stop(true).animate({'top': '-18px'}, 100);
	}, function(){
		$('div.author-more-posts', $container).animate({'top': '0'}, 100);
	});
	
	$('a.author-img').hover(function(){
		$container = $(this).closest('div.post-list');
		$('h6 a', $container).addClass('active')
	}, function(){
		$('h6 a', $container).removeClass('active');
	});
	
});

