$(function(){
$('.img_thumb > div').hide();		   	
			
$('.img_thumb').hover(function() {
	$(this).find('div').toggle()
				});
});

			


