
	/*$(document).ready(function(){
	
		header_position()
	
		// 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;
		});
		

	});
	
			function header_position() {
$("#header").css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
	if ( !(jQuery.browser.msie && jQuery.browser.version < 7)) { // take away IE6
		$("#header").css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
	}
}*/

	$(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;
	});
	
	$("#email_submission").validate({
	errorLabelContainer: $("#email_sign_up div.error")
		});
	});
	
	//Email Subscribe
	function subscribe(){
	$('#email_sign_up').hide();
	$('#submit_successful').fadeIn('slow');
	}