if (window.$ && window.$.url)
{
    $(document).ready(function()
    {
        var qs = $.url.attr("query"); if (qs)
        { $(".onlinedegreelink").attr("href", function() { return $(this).attr("href") + "?" + qs; }); }
    });
}

function submitComments()
{
    $("#leaveComment").hide();
    $("#thankYou").show();
    displayWorking();
    return false;
}
function displayWorking()
{
    setTimeout(function() { displayThankYou(); }, 3000);
}
function displayThankYou()
{

    $("#working").hide();
    $("#commentSaved").show();
}