jQuery(function($){
		     
    $('.theme-thumb').hover(function() {
		$(this).children("div").slideDown(150);
	}, function() {
		$(this).children("div").slideUp(150);
	});
		        
});