// $Id: nice_menus.js,v 1.17 2009/03/24 16:22:28 add1sun Exp $

// This uses Superfish 1.4.8
// (http://users.tpg.com.au/j_birch/plugins/superfish)

// Add Superfish to all Nice menus with some basic options.
$(document).ready(function() {
 /* $('ul.sf-menu').superfish({
    // Add the legacy hover class added for IE.
    hoverClass: 'sfHover',
    // Disable generation of arrow mark-up.
    autoArrows: false,

    // Mouse delay.
    delay: 800,
    // Animation speed.
    speed: 1
  });*/
  // Add in Brandon Aaronâ€™s bgIframe plugin for IE select issues.
  // http://plugins.jquery.com/node/46/release
  //$('#nice-menu').superfish().find('ul').bgIframe({opacity:false}); 
  
    $('#nice-menu').superfish({
        autoArrows: false,
        delay: 600,
        onBeforeShow: function() {
            $(this).hide();
        }
    });
});


