$(function(){
	$.superbox.settings = {
		closeTxt: "x"
	};
	$.superbox();
	
	$(".album").hover(
		function(){
			$(this).find('a.album-title').fadeIn('fast');	
		}, 
		function(){
			$(this).find('a.album-title').fadeOut('fast');
		});
		
	$('a[rel=pop]').click(function(){
		$($(this).attr('href')).toggle('fast');
	});
});

