// JavaScript Document
$(document).ready(function(){
		
        $("#current").hide();
		 $("#past").hide();
		$("#upcoming").hide();
		$(".current-show").show();
		$(".upcoming-show").show();
		$(".home-show").show();
		$("#content").show();

	$('.current-show').click(function(){
		$("#content").fadeOut("400",function(){
			$("#upcoming").fadeOut("400",function(){
				$("#past").fadeOut("400",function(){
						$("#current").slideDown();
				});
			});	
		});		
	});
	
	$('.upcoming-show').click(function(){
		$("#content").fadeOut("400",function(){
			$("#current").fadeOut("400",function(){
				$("#past").fadeOut("400",function(){
						$("#upcoming").slideDown();
				});
			});
		});		
	});

	$('.past-show').click(function(){
		$("#content").fadeOut("400",function(){
			$("#current").fadeOut("400",function(){
				$("#upcoming").fadeOut("400",function(){
						$("#past").slideDown();
				});
			});
		});		
	});
	
	$('.home-show').click(function(){
		$("#content").fadeOut("400",function(){
		$("#past").fadeOut("400",function(){
			$("#current").fadeOut("400",function(){
				$("#upcoming").fadeOut("400",function(){
						window.location.href = "http://www.fifty24pdx.com/blog";
				});
			});
		});
		});		
	});

	
});


