//PLIK: jquery-functions.js
//OPIS: Instrukcje jQuery

$(document).ready(function(){
//---

	$("img.button_pomoc").click(function() {
		$("div.pomoce").fadeIn("slow");									 
	});

	$(".animacja").mouseover(function() {
	$(this).stop().fadeTo(500, 0.65);
 	});

	$(".animacja").mouseout(function() {
	$(this).stop().fadeTo(500, 1);
	});

//---
});