$(document).ready(function(){
		//tagi
		$('.akapitt').hide();
		$('.naglowek').click(
			function(){ $('.akapitt').slideToggle("normal"); }
		);
});


$(document).ready(function(){

  $('.dwa').hide();


  $('.prod').hover(function() {
      $(this).children('.dwa').show();

      $(this).mousemove(function(e){
          $(this).children('.dwa').css('left', e.pageX + 12);
          $(this).children('.dwa').css('top', e.pageY + 12);
      });

  },
  function() {
     $(this).children('.dwa').hide();
  });

});
