$(document).ready(function(){
	$('.thumb').hover(function(){
		$('.thumb-content', this).show();
	}, function(){
		$('.thumb-content', this).hide();
	});
});