$(document).ready(function() {
     
	// NOWE OKNO JEŚLI ATRYBUT REL='TARGET'
	$('a[rel=target]').attr('target','_blank');
	
	// MENU
	$("ul.menu li").hover(function() {
	   $(this).addClass('hover');
},function() {
	   $(this).removeClass('hover');
});

	$("ul.menu li a").hover(function() {
	   $(this).addClass('hover');
},function() {
	   $(this).removeClass('hover');
});

	$('ul.nav li').last().css('background', 'none'); 
	
	$("ul.nav a").hover(function() {
		   $(this).stop().animate({paddingLeft : "20px"},200);
	},function() {
		   $(this).stop().animate({paddingLeft : "15px"},200);
	});
	
	// NAGŁÓWEK
	$("h1, h2, h3, h4, h5, h6").css('color', '#d6212a');	
	
	// BANNERY
	
	$(".newsticker-jcarousellite").jCarouselLite({
	vertical: false,
	hoverPause:true,
	visible: 3,
	auto: 2500,
	speed:800
	});
	
});


