/**
 * This set of functions is used to work the menus for the new Sandbox on USA Today
 * This is using jquery.
 */

function hide_all_submenus() {
  // Never hide the default menu (#submenu1) otherwise you would see nothing (white or whatever the BG is).
  $('div#menu ul#nav li div:not("#submenu1") ul').parent().fadeOut(effect_delay);
}

function show_my_submenu() {
  // Do not animate the menu of you are mousing over the same menu again.
  if ($('div ul.inside_menu.subnav', this).parent().css('display') == 'block') {
    return;
  }
  hide_all_submenus();
  $('div ul.inside_menu.subnav', this).parent().fadeIn(effect_delay);
}

var effect_delay = 200;
$(document).ready(function() {
    // Reset the menus to "HOME" when the mouse leaves the menu elements
    $('div#menu').bind('mouseleave', hide_all_submenus);

    // Reset the menus to "HOME" when the mouse enters the home menu item
    $('#menu_home').bind('mouseenter', hide_all_submenus);

    // Show the submenu of the item you mosue over.
    $('#menu_fantasy_games, #menu_fantasy_news, #menu_customer_support').bind('mouseenter', show_my_submenu);
  });
