
	$(document).ready(function(){
	
		// Custom toggle/fade(s)
		jQuery.fn.fadeToggle = function(speed, easing, callback) { 
	   	return this.animate({opacity: 'toggle'},500,'easeInOutQuint');
		};
	
		// Hide/Open Info
		
		var viewText="View Past Shows";
		var hideText="Hide Past Shows";
			
		$('#pastshows').hide();
		$('.viewpastshows').click(function() {
		
		if ($(this).html()==viewText) {
		$(this).html(hideText);
		}
		else {
		$(this).html(viewText);
		}
	
		$('#pastshows').fadeToggle();
		return false;
		});
	});