jQuery(document).ready(function(){

	jQuery('.post img').parent().mouseenter(
		function(){
			//jQuery(this).css('cursor', 'pointer');
			jQuery(this).find('.image-description').css('display', 'block');
		}
	);
	jQuery('.post img').parent().mouseleave(
		function() {
			//jQuery(this).css('cursor', 'default');
			jQuery(this).find('.image-description').css('display', 'none');
		}
	);

});