﻿$(document).ready(function () {
    bindHover();
    function bindHover() {


        $("#purchase_nav_container").hover(
                  function () {

                      $('#banneroverlay').stop().css("left", "469px").animate({
                          left: '-=469'
                      }, 500, function () {
                          // Animation complete.
                          $('#banneroverlay').css("left:-469px");
                          bindContentHover();
                      });

                  },
                  function () {

                      $('#banneroverlay').stop().css("right", "-469px").animate({
                          left: '+=469'
                      }, 500, function () {
                          // Animation complete.
                          $('#banneroverlay').css("left:469px");
                      });
                  }
                );

    }



    $("#banneroverlay").hover(
              function () {

                  $("#banneroverlay").stop();

                  $("#purchase_nav_container").unbind('mouseenter mouseleave');

                  setTimeout(function () {

                      bindHover();

                  }, 500);
              },
              function () {

                  $("#purchase_nav_container").unbind('mouseenter mouseleave');
                  bindHover();
              }
            );


    function bindContentHover() {

        $("#banneroverlay").hover(
              function () {

                  $("#banneroverlay").stop();

                  $("#purchase_nav_container").unbind('mouseenter mouseleave');

                  setTimeout(function () {

                      bindHover();

                  }, 500);
              },
              function () {
                  $('#banneroverlay').stop().css("right", "469px").animate({
                      left: '+=469'
                  }, 500, function () {
                      // Animation complete.
                  });
                  $("#purchase_nav_container").unbind('mouseenter mouseleave');
                  bindHover();
              }
            );
    }





});
