$(document).ready(function()
  {
    $('.licytuj').mouseover(function()
      {
          $(this).attr("src","graphics/licytujHover.jpg");
      }
    );
    $('.licytuj').mouseout(function()
      {
          $(this).attr("src","graphics/licytuj.png");
      }
    );
    
    $('.zapiszSie').mouseover(function()
      {
          $(this).attr("src","graphics/zapiszSieHover.jpg");
      }
    );
    $('.zapiszSie').mouseout(function()
      {
          $(this).attr("src","graphics/zapiszSie.png");
      }
    );
    
    $('.kup').mouseover(function()
      {
          $(this).attr("src","graphics/kupHover.jpg");
      }
    );
    $('.kup').mouseout(function()
      {
          $(this).attr("src","graphics/kup.jpg");
      }
    );
     $('.button').mouseover(function()
      {
          $(this).css('color','#FFD700');
      }
    );
    $('.button').mouseout(function()
      {
         $(this).css('color','#ffffff');
      }
    );
      $('.textBoxLong').mouseover(function()
      {
          $(this).css('background','#f1f1f1');
      }
    );
    $('.textBoxLong').mouseout(function()
      {
         $(this).css('background','#ffffff');
      }
    );
       $('.textBox').mouseover(function()
      {
          $(this).css('background','#f1f1f1');
      }
    );
    $('.textBox').mouseout(function()
      {
         $(this).css('background','#ffffff');
      }
    );
  }
);