// JavaScript Document

$(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;
	});
	
	// CIEŃ DLA POZYCJI MENU POZIOMEGO
	$.fn.textDropShadow = function(){
		$(this).html('<span class="cien">'+$(this).html()+'</span><span>'+$(this).html()+'</span>');
		return $(this);
	}
	$("div.menu-poziome ul li a").each(function(){$(this).textDropShadow();});

});
