$(document).ready(function(){ 
	
	currentActive = "upcoming";
	
	$("#swapEvents").click(function(){ 
		$("#currentShows").toggle();
		$("#pastShows").toggle();
		$("#pastShowsText").toggle();
		if(currentActive == "upcoming"){
			$("#showLink").empty();
			$("#showLink").append("View Upcoming Shows");
			$("#showTitle").attr({ 
			          			src: "http://www.galleryup.com/shop/skin1/images/galleryTitle3.gif",
			          			alt: "Past Shows"
			        			});
			currentActive = "past";
		} else {
			$("#showLink").empty();
			$("#showLink").append("View Past Shows");
			$("#showTitle").attr({ 
			          			src: "http://www.galleryup.com/shop/skin1/images/galleryTitle2.gif",
			          			alt: "Upcoming Shows"
			        			});
			currentActive = "upcoming";
		}
	}); 
});