﻿$(document).ready(function() {
    var thisPage = window.location.href.substring(window.location.href.lastIndexOf("/") + 1);
    if (thisPage.indexOf("?") >= 0)
        thisPage = thisPage.substring(0, thisPage.indexOf("?"));
    if (thisPage == "QuizRules.aspx") thisPage = "Quiz.aspx";
    if (thisPage == "QuizRating.aspx") thisPage = "Quiz.aspx";
    if (thisPage == "IncreaseRules.aspx") thisPage = "IncreasePoints.aspx";
    if (thisPage == "PersonData.aspx") thisPage = "Person.aspx";
    var activeLink = $("#pc_menu a[href=" + thisPage + "]");
    activeLink.parent().addClass("selected");
});

function hideGate() {
    $("#p_loader").remove();
}
