$(function() {
	// Sort out Tabs
	var anchor = ($.cookie('last_tab-' + document.location.pathname) ? $.cookie('last_tab-' + document.location.pathname) : "#news");
	if (document.location.href.split("#")[1] && document.location.href.split("#")[1].length > 0 && $("div.tabs div#" + document.location.href.split("#")[1])) {
		anchor = "#" + document.location.href.split("#")[1];
	}
	$("div.tabs div, div.tabs h2").hide();
	$(anchor).show();
	$("ul.tabs a[@href$="+ anchor +"]").addClass("selected");
	
	$("ul.tabs a").click(function () {
		$("div.tabs div").hide();
		$("ul.tabs a").removeClass("selected");
		var href = "#" + $(this).attr("href").split("#")[1];
		$(href).show();
		$(this).addClass("selected");
		$.cookie('last_tab-' + document.location.pathname, href);
		return false;
	});
	
	
});