//Code for the show/hide dropdown div for repertoire
$(document).ready(function() {
	
	var $repdiv = $('#repertoire');
	$repdiv.hide();
	
	$('a.seemore').click(function() {
		var $link=$(this);						  
		if($repdiv.is(':hidden'))	{
			$repdiv.fadeIn('slow');
			$link.text('close list');
		} else {
			$repdiv.fadeOut('slow');
			$link.text('view list');
		} return false;
	});
	
	var $repdiv2 = $('#workshop');
	$repdiv2.hide();
	
	$('a.seemore2').click(function() {
		var $link=$(this);						  
		if($repdiv2.is(':hidden'))	{
			$repdiv2.fadeIn('slow');
			$link.text('close list');
		} else {
			$repdiv2.fadeOut('slow');
			$link.text('view list');
		} return false;
	});
	
	var $repdiv3 = $('#perf');
	$repdiv3.hide();
	
	$('a.seemore3').click(function() {
		var $link=$(this);						  
		if($repdiv3.is(':hidden'))	{
			$repdiv3.fadeIn('slow');
			$link.text('close list');
		} else {
			$repdiv3.fadeOut('slow');
			$link.text('view list');
		} return false;
	});
});
