$(function() {	
	if(jQuery().gallery) {	
		$('#finder-wrapper')
			.mouseenter(function() { $('#thumb-wrapper').stop().animate({height: '78px'}, 'fast'); })
			.mouseleave(function() { $('#thumb-wrapper').stop().animate({height: 0}, 'fast'); });
		
		$('#thumbs').gallery();
	}
});


