$(document).ready(function() {
	$(".rights-info").append("&nbsp;").prepend("&nbsp;");
	
	if(location.hash != "")
	{
		$(".tab").removeClass("active");
		$(location.hash+"-tab").addClass("active");
		$(".sec").addClass("hidden");
		$(location.hash).removeClass("hidden");
	}
	$("a.tab").click(function () {
		$(".active").removeClass("active");
		$($(this).attr("href")+"-tab").addClass("active");
		$(".sec").addClass("hidden");
		$( $(this).attr("href") ).removeClass("hidden");
	});
});