    
   $(document).ready(function()
   {
      $('a').mouseover(function ()
      {
         if ( $(this).attr('class') == '' )
         {
            $(this)
               .stop()
               .animate({
                  "color": "#ff9900"
               }, 400, 'easeInOutSine');
         }
         
         return true;
      });
      
      $('a').mouseout(function ()
      {
         if ( $(this).attr('class') == '' )
         {
            $(this)
               .stop()
               .animate({
                  "color": "#666666"
               }, 400, 'easeInOutSine');
         }
         
         return true;
      });
      
      $('.lay_menu_link').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ff9900"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_menu_link').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ffffff"
            }, 400, 'easeInOutSine');
         
         return true;
      });
   });
   
