$(document).ready(function() {		
		$('.thumbnails li').hover( function() { $(this).find('img').animate({ top: '-10px'}, 100); }, function() { $(this).find('img').animate({ top: '0px'}, 500); });		
});


function show_visible(selector) {
	if ($(selector).is(":hidden")) {
		$(selector).slideDown("slow");
	} else {
		$(selector).slideUp("slow");
	}
}
