$(document).ready(function() {
	
	
	jQuery.fn.toggleText = function(a, b) {
		return this.each(function() {
			jQuery(this).text(jQuery(this).text() == a ? b : a);
		});
	};
	
	$('#featured').localScroll();
	
	$("a.requestbtn").click(function () {
	      $("#request").slideToggle("slow");
		  $(this).toggleClass("active");
		  $(this).toggleText("hide all dates", "view all dates");
		  
		
		});
	
});
	
	
$(document).ready(function() {
	
	
	jQuery.fn.toggleText = function(a, b) {
		return this.each(function() {
			jQuery(this).text(jQuery(this).text() == a ? b : a);
		});
	};
	
	$('#featured').localScroll();
	
	$("a.biobtn").click(function () {
	      $("#bio").slideToggle("slow");
		  $(this).toggleClass("active");
		  $(this).toggleText("hide bio", "view full bio");
		  
	});	
	
		
});


$(document).ready(function() {
	
	
	jQuery.fn.toggleText = function(a, b) {
		return this.each(function() {
			jQuery(this).text(jQuery(this).text() == a ? b : a);
		});
	};
	
	$('#featured').localScroll();
	
	$("a.discobtn").click(function () {
	      $("#disco").slideToggle("slow");
		  $(this).toggleClass("active");
		  $(this).toggleText("hide discography", "view full discography");
		  
	});
	
});	
	
	
$(document).ready(function() {
	
	
	jQuery.fn.toggleText = function(a, b) {
		return this.each(function() {
			jQuery(this).text(jQuery(this).text() == a ? b : a);
		});
	};
	
	$('#featured').localScroll();
	
	$("a.downloadbtn").click(function () {
	      $("#download").slideToggle("slow");
		  $(this).toggleClass("active");
		  $(this).toggleText("hide downloads", "view downloads");
		  
	});
	
});	
		
		
	
