$(document).ready(function(){
	//	Find the music player link and tell it to open in a new window
	if($('#musicButton')){
		$('#musicButton a').click(function(event){
			event.preventDefault();
			window.open("/player/musicPlayer.php","musicPlayer","width=385,height=250,status=no,toolbar=no,location=no");
		});
	}
	
	//	Cycle through all links with class="external" and tell them to open in a new window
	$('a.external').click(function(event){
		event.preventDefault();
		href = $(this).attr('href');
		window.open(href);
	});
	
	//	Audition repertoire
	$("#repertoire-list").ready(function(){
		$('#repertoire-list > dd').append('<a href="#" onClick="return ddClose(this);">Close</a>');
		$('#repertoire-list > dd').hide();
		$('#repertoire-list > dt').wrapInner('<a href="#"></a>');
		$('#repertoire-list > dt').click(function(e){
			e.preventDefault();
			$(this).next('dd').toggle();
		});
	});
	
	//	Find all links to PDF files and add a special icon
	$("a[href$='.pdf']").addClass("download pdf");
});

function ddClose(target){
	$(target).parent().toggle();
	return false;
}
