    
   $(document).ready(function()
   {
      $('.lay_link_orange_black').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#000000"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_orange_black').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#f8a908"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_black_orange').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#f8a908"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_black_orange').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#000000"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_red_orange').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#f8a908"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_red_orange').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#cc0000"
            }, 400, 'easeInOutSine');
            
         return true;
      });
   });
   
