function updateMenu(item) {
    $("#nav > li."+item).addClass("current");
}

function newsExpand() {
    $("#right-sidebar .news-rss.table h3 a").hover(
        function() {
            alert("on");
        },
        function() {
            alert("off");
        }
    );
    
}
