﻿$jQuery(document).ready(function() {
  //global navigation scripting
  $jQuery("#global-nav").children('li').bind("mouseenter", function() {
    //IE FIX - add background to the gloval-nav link
    $jQuery(this).find('.global-nav-link').css({ 'background': '#c6168d' });

    //dynamically assign global menu arrow indicator
    var position = $jQuery(this).position();
    var wid = ($jQuery(this).width() / 2) - 25;
    $jQuery(this).find('.header').css({ 'left': position.left + wid });

    //global navigation handling
    if ($jQuery(this).children('ul').is(":hidden")) {
      $jQuery(this).find('.menu-indicator').slideDown("fast");
      $jQuery(this).children('ul').slideDown("fast");
    }
  }).bind("mouseleave", function() {
    $jQuery(this).find('.menu-indicator').slideUp("fast");
    $jQuery(this).children('ul').slideUp("fast");
    $jQuery(this).find('.global-nav-link').css({ 'background': 'none' });
  });

  //global navigation sub ul images preview handling
  $jQuery(".products1-show").bind("mouseenter", function() {
    $jQuery(this).children(".img-container").css({ 'display': 'block' });
  }).bind("mouseleave", function() {
    $jQuery(this).children(".img-container").css({ 'display': 'none' });
  });

  $jQuery(".products2-show").bind("mouseenter", function() {
    $jQuery(this).children(".img-container").css({ 'display': 'block' });
  }).bind("mouseleave", function() {
    $jQuery(this).children(".img-container").css({ 'display': 'none' });
  });
});