// JavaScript Document


$(document).ready(function() {
	$(".tab_content").hide();
	if($("ul.tabs li.active").length > 0) {
		$("ul.tabs li.active").show();
		var activeTab = $("ul.tabs li.active").find("a").attr("href");
		$(activeTab).show();
	} else {
		$("ul.tabs li:first").addClass("active").show();
		$(".tab_content:first").show();
	}

	$("ul.tabs li").click(function() {
		$("ul.tabs li").removeClass("active");
		$(this).addClass("active");
		$(".tab_content").hide();

		var activeTab = $(this).find("a").attr("href");
		$(activeTab).fadeIn();
		return false;
	});
});

