$(document).ready(function() {
	$(".menu ul li").hover(
		function() {
			$(this).addClass("ma");
		},
		function() {
			$(this).removeClass("ma");
		}
	);
	$(".k_naglowek").hover(
		function() {
			$(this).addClass("k_n");
		},
		function() {
			$(this).removeClass("k_n");
		}
	);
	$(".aktualnosc_mini").hover(
		function() {
			$(this).children('div').children("h3").css("color" , "#FEA813");
			$(this).children('div').children(".p2").children("b").css("color" , "#FEA813");
			$(this).children('div').children(".p3").css("text-decoration" , "underline");
			$(this).children('div').children(".ak").css("text-decoration" , "underline");
			$(this).children('div').css("cursor","pointer");
		},
		function() {
			$(this).children('div').children("h3").css("color" , "");
			$(this).children('div').children(".p2").children("b").css("color" , "");
			$(this).children('div').children(".p3").css("text-decoration" , "");
			$(this).children('div').children(".ak").css("text-decoration" , "");
			$(this).children('div').css("cursor","");
		}
	);

	$("#slider1").SNAZslider();

	try {
		cena();		
	}
	catch(e) { }

	var ima = new Array('black_arrow.png', 'black_arrow_big.png');
	for(var i = 0; i < ima.length; ++i) {
		temp = ima[i];
		ima[i] = new Image();
		ima[i].src = base+'img/'+temp;
	}

	$("img.infog[title]").tooltip({
		tip: '#demotip_big',
		effect: 'slide'
	});


});

