$(function() {

	$(".thumbs li.thumb a").hover(function() {
		$(this).next().slideDown(100);
	}, function() {
		$(this).next().slideUp(100);
	});

});
