
$(function(){

// zamrozenie strzalek

	$(".zap_strzalka_pl").hide();
	$(".zap_strzalka_de").hide();
	$(".zap_strzalka_eng").hide();

// zap PL

	$(".zap_pl").mouseover(function(){
		$(".zap_pl").animate({
			color: "#000000" 
		}, 600);
		$(".zap_strzalka_pl").show("drop", { direction: "left" }, 600);
	});
	$(".zap_pl").mouseout(function(){
		$(".zap_pl").animate({
			color: "#8b8a8a" 
		}, 200);
		$(".zap_strzalka_pl").hide("drop", { direction: "left" }, 200);
	});

// zap DE

	$(".zap_de").mouseover(function(){
		$(".zap_de").animate({
			color: "#000000" 
		}, 600);
		$(".zap_strzalka_de").show("drop", { direction: "left" }, 600);
	});
	$(".zap_de").mouseout(function(){
		$(".zap_de").animate({
			color: "#8b8a8a" 
		}, 200);
		$(".zap_strzalka_de").hide("drop", { direction: "left" }, 200);
	});

// zap ENG

	$(".zap_eng").mouseover(function(){
		$(".zap_eng").animate({
			color: "#000000" 
		}, 600);
		$(".zap_strzalka_eng").show("drop", { direction: "left" }, 600);
	});
	$(".zap_eng").mouseout(function(){
		$(".zap_eng").animate({
			color: "#8b8a8a" 
		}, 200);
		$(".zap_strzalka_eng").hide("drop", { direction: "left" }, 200);
	});

});
