$(document).ready(function(){
    $('.topMenu-box').hover(
        function () {
            $("ul", this).css("display", "block");
        },
        function () {
            $("ul", this).css("display", "none");
        }
    );
});