$(document).ready(function(){
	$("#horse-parade, #retail-specials, #church-stroll").css({opacity:0});
	
	$("#default-button").click(function (event) {
		event.preventDefault();
		animate_to("#default");
	});
	$("#horse-parade-button").click(function (event) {
		event.preventDefault();
		animate_to("#horse-parade");
	});
	$("#retail-specials-button").click(function (event) {
		event.preventDefault();
		animate_to("#retail-specials");
	});
	$("#church-stroll-button").click(function (event) {
		event.preventDefault();
		animate_to("#church-stroll");
	});
	
	function animate_to(id) {
		if (!$(id).hasClass("active")) {
			$(".active").animate({top:500, opacity:0}, 500, null, function(){
				$(".active").removeClass("active");
				$(id).addClass("active").css({top:400,left:""}).animate({top:440, opacity:1}, 500);
			});
		}
	}
});