$(document).ready( function() {
	// INIT
	// hide all elements except Tab1
	if(window.location.hash == "#tabone") {
		var hideAtInit = ".tabtwo, .tabthree, .tabfour";
		$("#one a").addClass("active");
	} else if(window.location.hash == "#tabtwo") {
		var hideAtInit = ".tabone, .tabthree, .tabfour";
		$("#two a").addClass("active");
	} else if(window.location.hash == "#tabthree") {
		var hideAtInit = ".tabone, .tabtwo, .tabfour";
		$("#three a").addClass("active");
	} else if(window.location.hash == "#tabfour") {
		var hideAtInit = ".tabone, .tabtwo, .tabthree";
		$("#four a").addClass("active");
	} else {
		var hideAtInit = ".tabtwo, .tabthree, .tabfour";
		$("#one a").addClass("active");
	}
	$(hideAtInit).hide();
	
	$("#tabs li a").click( function() {
		var curShow = $(".active").removeClass("active").parent().attr("id");
		$(".tab"+curShow).hide();
		
		$(this).addClass("active");
		var showNow = $(this).parent().attr("id");
		$(".tab"+showNow).show();
	});
});
