$(document).ready(function(){
		$("#one").show();
		$("a.one").addClass("active");
		$("#two").hide();
		$("#three").hide();
		$("a.one").click( function() { 
			$("a.one").addClass("active");
			$("a.two").removeClass("active");
			$("a.three").removeClass("active");
			$("#one").show();
			$("#two").hide();
			$("#three").hide();
		});
		$("a.two").click( function() { 
			$("a.one").removeClass("active");
			$("a.two").addClass("active");
			$("a.three").removeClass("active");
			$("#one").hide();
			$("#two").show();
			$("#three").hide();
		});
		$("a.three").click( function() { 
			$("a.one").removeClass("active");
			$("a.two").removeClass("active");
			$("a.three").addClass("active");
			$("#one").hide();
			$("#two").hide();
			$("#three").show();
		});
	});

