    
   $(document).ready(function()
   {
      $('.lay_link_biel_pomarancz').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ee7d16"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_biel_pomarancz').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ffffff"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_pomarancz_biel').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ffffff"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_pomarancz_biel').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ee7d16"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_szarosc_pomarancz').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ee7d16"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_szarosc_pomarancz').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#828282"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_czern_pomarancz').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ee7d16"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_czern_pomarancz').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#212121"
            }, 400, 'easeInOutSine');
            
         return true;
      });
   });
   