$j(document).ready(function() {
    //changing colors for top menu-------------------
    $j("#public_topmenu li").mouseover(function () {

        $j(this).css("background", "#646f47");
        $j(this).css("color", "#fff");
    });

    $j("#public_topmenu li").mouseout(function () {

        $j(this).css("background", "transparent");
        $j("#public_topmenu li.active").css("background", "#dde1d3");

    });
    //-----------------------------------------------



});

