/*
Content-Type: text/javascript
*/

$(function() {
    var menuul = $("#menu ul");
    //menuul.find("li.selected").parents("ul").parent("li").addClass("selected");

    if ($.browser.msie)
        if (parseInt($.browser.version) < 7) {
            menuul.find("li").hover(
                function(){ //hover in
                    var ul = $(this).children("ul");
                    ul.show();
                }, function() { //hover out
                    var ul = $(this).children("ul");
                    ul.hide();
                }
                );
        }
});