    
   $(document).ready(function()
   {
      $('.lay_link_biel_braz').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#E0CCA9"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_biel_braz').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ffffff"
            }, 400, 'easeInOutSine');
            
         return true;
      });
   });
   