$(function(){
	$('.post').hover(function(){
		$(this).find('.object-commands').show();
	}, function(){
		$(this).find('.object-commands').hide();
	});
})
