
<!--
//<![CDATA[

$(document).ready(function() {
	
	//$("#tab_container").tabs({ fxFade: true, fxSpeed: "fast", deselectable: true }); 
	//$(".lastsection").hide();
	
	//Crappy tab alternative
	$("#tab_container ul a").click(function() {
			
			$(".lastsection").hide();
			
			$("#tab_container ul a").removeClass("on");			
			$(this).addClass("on");
			
			var tab = $(this).attr("href");
			
			$(tab + " .lastsection").show();
			
			return false;
			
	});
	
});

//]]>
-->	