    
   $(document).ready(function()
   {
      $('.lay_link_biel_niebieski').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#50708f"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_biel_niebieski').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ffffff"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_niebieski_biel').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#ffffff"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_niebieski_biel').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#50708f"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_niebieski_czerwien').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#8a0000"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_niebieski_czerwien').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#50708f"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_granat_biel').mouseover(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#8a0000"
            }, 400, 'easeInOutSine');
            
         return true;
      });
      
      $('.lay_link_granat_biel').mouseout(function ()
      {
         $(this)
            .stop()
            .animate({
               "color": "#00283f"
            }, 400, 'easeInOutSine');
            
         return true;
      });
   });
   