﻿function MyMenu() {
    $(" #nav ul ").css({ display: "none" }); // Opera Fix
    $(" #nav li").hover(function() {
        // $(this).find('ul:first').css({ visibility: "visible", display: "none" }).show(400);
        $(this).find('ul:first').css({ visibility: "visible", display: "none" }).slideDown("fast");
    }, function() {
        $(this).find('ul:first').css({ visibility: "hidden" });
    });
}

