$(document).ready(function(){
	// load index page when the page loads
	$("#content_s0").load("home.html");
	$("#home").click(function(){
	// load home page on click
		$("#content_s0").load("home.html");
	});
	$("#logo").click(function(){
	// load music page on click
		$("#content_s0").load("ad.html");
	});
	$("#ad").click(function(){
	// load ad page on click
		$("#content_s0").load("ad.html");
	});
    $("#about").click(function(){
	// load about page on click
		$("#content_s0").load("about.html");
	});
	$("#gigs").click(function(){
	// load contact form onclick
		$("#content_s0").load("gigs.html");
	});
	$("#videos").click(function(){
	// load contact form onclick
		$("#content_s0").load("videos.html");
	});
	$("#press").click(function(){
	// load contact form onclick
		$("#content_s0").load("press.html");
	});
	$("#photos").click(function(){
	// load contact form onclick
		$("#content_s0").load("photos.html");
	});
	$("#music").click(function(){
	// load contact form onclick
		$("#content_s0").load("music.html");
	});
	$("#subscribe").click(function(){
	// load contact form onclick
		$("#content_s0").load("subscribe.html");
	});
});

