﻿$(function() {
    thisURL = document.URL;
    var str = thisURL.substr(thisURL.lastIndexOf("/") + 1);
    str = str.substr(0, str.indexOf('.')).toLowerCase();

    if (str != null && str != "") {
            $("#" + str).addClass("hover");
    }
    else {
        $("#aboutus").addClass("hover");
    }

});
