/**
 * Digital Junkies
 * 
 * @author	Stijn Van Minnebruggen
 * @website	www.digitaljunki.es
 * 
 */

$(document).ready(function() {
	
	$('.post_img').hover(function() { $(this).next('.post_txt').show(); }, function() { $(this).next('.post_txt').hide(); });
	$('.post_txt').hover(function() { $(this).show(); }, function() { $(this).hide(); });
	
});
