﻿$(function() {
    $(".customerservice").hover(
                function() {
                    if ($("ul", this).is(":animated"))
                        return;
                    $(".mydrop li ul").animate({
                        //height: 'hide',
                        opacity: 'hide'
                    }, 200)

                    $("ul", this).animate({
                        //height: 'show', 
                        opacity: 'show'
                    }, 500)
                },
                  function() {
                      if ($("ul", this).is(":animated"))
                          return;

                      $("ul", this).animate({
                          //height: 'hide',
                          opacity: 'hide'
                      }, 200)
                  });

    $(".menuDropdown li").hover(
                function() {
                    $(this).css("background-color", "#FFFFFF");
                },
                function() {
                    $(this).css("background-color", "#D2D2D0");
                })

    $("#customerservice").hover(
                function() {
                    $(this).css("background", "url(/imgs/nav/help.gif) no-repeat 0px -20px");
                },
                function() {
                    $(this).css("background", "url(/imgs/nav/help.gif) no-repeat 0px 0px");
                })

    $('#forgotPasswordToggle').click(
                function() {
    $('#ForgotPassword').slideToggle(400);
                return false;
                });
});