	/**********************
	 Header Nav dropdown
	**********************/
  $(document).ready(
      function()
      {
         $('.headerLink1' ).hover(
            function()
            {
               $(this).children('.firstTier').css('display', 'block');
               $(this).children('.headAnchorLink').css('color', '#cb8a8a');
            },
            function()
            {
               $(this).children('.firstTier').css('display', 'none');
               $(this).children('.headAnchorLink').css('color', '#FFFFFF');
            }
         );

         $('.headerLink2').hover(
            function()
            {
               var thisTop = this.offsetTop-1;
	            var thisWidth=  $(this).outerWidth();

               $(this).children('.secondTier').css('display', 'block');
               $(this).children('.secondTier').css('top', thisTop);
	            $(this).children('.secondTier').css('left', thisWidth + 'px');
               $(this).css('background-color', '#e1e0e0');
	            $(this).addClass('lhover');
            },
            function()
            {
               $(this).children('.secondTier').css('display', 'none');
               $(this).css('background-color', '#fff');
            }
         );

        $('.headerLink3').hover(
            function()
            {
               $(this).css('background-color', '#e1e0e0');
            },
            function()
            {
               $(this).css('background-color', '#fff');
            }
         );


         $('.HeaderNav').hover(
            function()
            {
               var dropDownAnchor = $(this).siblings(".headAnchorLink") ;
               dropDownAnchor.css('color', '#cb8a8a');
            },
            function()
            {
               var dropDownAnchor = $(this).siblings(".headAnchorLink") ;
               dropDownAnchor.css('color', '#FFFFFF');
            }
         );
      });