$(document).ready(function(){
	$('#thumbs > .thumb').hover(
		function () {
			if($(this).find(".thumb-title").is(':hidden')){
				$(this).find(".thumb-title").slideDown(200);
			}
		}, 
		function () {
			if($(this).find(".thumb-title").is(':visible')){
				$(this).find(".thumb-title").slideUp(200);
			}
		}
	);
});
