$(function () {

    $('#top-menu').find('> li').hover(function () {
        $(this).find('ul')
		.removeClass('noJS')
		.stop(true, true).show(200);
        $(" #top-menu ul ").css({ display: "none" }); // Opera Fix
        $(" #top-menu li").hover(function () {
            $(this).find('ul:first').css({ visibility: "visible", display: "none" }).show(200);
        }, function () {
            $(this).find('ul:first').css({ visibility: "hidden" });
        });
    });

});
