$(function(){
    $("#accordion" ).accordion();

    $("#sub-nav-horizontal ul li").mouseover(function(){
            $(this).find('ul').css('display', 'block');
        }).mouseout(function() {
            $(this).find('ul').css('display', 'none');
    });

}) ;
