﻿$(document).ready(function() {
    if ($(".userleftmenu").val() == "0") {
        return;
    }
    var nav_id = "#nav_" + $(".userleftmenu").val();
    //alert(nav_id);
    var cssDiv = {
        "height": "41px",
        "position": "relative"
    };
    var cssImg = {
"position":"absolute", "border-top":"#e0e2e2 1px solid", "left":"0", "bottom":"0"
    };

    $(nav_id).css(cssDiv);
    $(nav_id + "  img").css(cssImg);

    $(nav_id + "  img").get(0).src = $(nav_id + "  img").get(0).src.replace("off.gif", "on.gif");
});
