$(function(){
$('a.fancybox').fancybox();
$('.hide.gallery').hide();
$('#albumsList h4.header').click(function(){
	$('#albumsList div.gallery').hide('slow');
	$(this).next().show('slow')
	return false;
});
});