$(document).ready(function(){
	
	// Reveal the secret hidden field in the email signup
	$('.footer .name, .footer .mailinglist a').hide();
	$('.footer #nddlyi-nddlyi').click(function(){
		$('.footer .name').slideDown('fast');
		$('#signup').css({'position':'inherit', 'float':'none'});
		$('.footer .mailinglist a').show();
	});
	$('.footer .mailinglist a').click(function(){
		$('.footer .name').slideToggle('fast');
		$('#signup').css({'position':'absolute'});
		$('.footer .mailinglist a').hide();
		return false;
	});
	
	// Hide and show bios for the player section
	$(".panes > div").hide();
	$(".tabs").tabs(".panes > div");
	
	// Insert photo corners over the band member photo
	$('.players.listing .figure').prepend('<img src="/img/corner-t-l.png" alt="" class="corner top left" />');
	$('.players.listing .figure').prepend('<img src="/img/corner-t-r.png" alt="" class="corner top right" />');
	$('.players.listing .figure').prepend('<img src="/img/corner-b-r.png" alt="" class="corner bottom right" />');
	$('.players.listing .figure').prepend('<img src="/img/corner-b-l.png" alt="" class="corner bottom left" />');
	
	// Animate the band photos hiding and showing
	$('.players.listing a').click(function(){
		$('.players.listing .figure').slideUp('fast');
		$(this).parent().prev().slideDown('fast');
	});
	
	// Trigger the overlay for bigger images
	$("img[rel]").overlay();
});
