var oldoffice = {
	apllyTab : function(options) {
		var defaults = {
			active : null
		};
		var settings = $.extend( {}, defaults, options);
		$("a.tab").click(function () {			
				
			var content_show = $(this).attr("href");
			
			$(".current").removeClass("current");
			$(this).parent().addClass("current");
			
			$(".tabContent").hide();
			$(content_show).fadeIn(300);
			return false;
		});
		$(settings.active).find("a").trigger("click");
	}
	
};
var currentURL = window.location.search;
hash = currentURL.substr(5,2);
//alert ( hash ); // Displays '#results'
if (hash=="02")
{
	$(function() {
		oldoffice.apllyTab({ active : "#tab01" });
	});
}
else if (hash=="03")
{
	$(function() {
		oldoffice.apllyTab({ active : "#tab02" });
	});
}
else {
	$(function() {
		oldoffice.apllyTab({ active : "#tab00" });
	});
}
