$(document).ready(function() { 
	$('.flash .close').click(function(ev){
		ev.preventDefault();
		$(this).parent().slideUp();
	});
	$('.gallery a').fancybox({
	    'titleShow' : false,
		'margin' : 0,
		'overlayShow' : true,
		'hideOnOverlayClick' : true
	});
	$(".show-lyrics, .member a").fancybox({
		'titlePosition'		: 'none',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	$('.videos .enlarge').click(function(ev){
		ev.preventDefault();
		var box = $(this).parent().parent();
		
		$('.videos .box').not(box).find('.holder').animate({
			width: '0',
		    height: '0'
		}, 1000, function() { 
			var html = $(this).html();
			$(this).html(html);
		});
		
		$('.videos .box').not(box).animate({
			width: '220px',
		    height: '165px'
		}, 1000, function() { });
		
		box.find('.holder').animate({
			width: '720px',
		    height: '400px'
		}, 1000, function() { });
		
		box.animate({
			width: '720px',
		    height: '400px'
		}, 1000, function() { });
	});
});
