$(document).ready(function() {
	
	// USUWANIE FOCUSA
	$('a').attr('onfocus', 'blur()');
	
	// NOWE OKNO DLA LINKÓW Z ATRYBUTEM REL="TARGET"
	$('a[rel="target"]').click(function() {
		var newWindow = window.open(this.href);
		return false;
	});
	
	// PŁYNNY POWRÓT DO GÓRY
	$('a[href="#top"]').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
	
	// PŁYNNY POWRÓT DO GÓRY
	$('a[href$=".pdf"]').not(':has(img)').addClass('pdf');
	
	// TABELA
	$('table#tab tr:odd td').addClass('wyrozniona');
	$('table#tab tr').not(':first').mouseover(function() {
		$(this).children('td').addClass('podswietlona');
	});
	$('table#tab tr').not(':first').mouseout(function() {
		$(this).children('td').removeClass('podswietlona');
	});
	
});
