// JavaScript Document


$(document).ready(function(){
	
	$('#datepicker').datepicker({dateFormat: 'yy-mm-dd'});
						   
	$('#home_nav').click(function(){
		$('#content').load('includes/home.php');
	});
	
	$('#bio_nav').click(function(){
		$('#content').load('includes/bio.php');
	});
	
	$('#tour_nav').click(function(){
		$('#content').load('includes/tour.php');
	});
	$('#music_nav').click(function(){
		$('#content').load('includes/music.php');
	});
	$('#causes_nav').click(function(){
		$('#content').load('includes/causes.php');
	});
	$('#contact_nav').click(function(){
		$('#content').load('includes/contact.php');
	});
	
	$('#addshow_submit').click(function(){
		
		addShow(
			$('#show_date').value(),
			$('#show_time').value(),
			$('#show_venue').value(),
			$('#show_city').value(),
			$('show_state').value(),
			$('show_cost').value(),
			$('#show_description').value()
		);
						
	});
	
	$('a.play_video').fancybox({
		'overlayOpacity': 0.5,
		'titleShow': false,
		'autoDimensions': true,
		'showCloseButton': true
	});
	

	
										
});

function changePage(page){
	page = 'includes/' + page;
	$('#content').load(page);

}

