$(document).ready(function(){

	//linki zewnętrzne
	$('a[rel=_blank]').click(function(){
		this.target = "_blank";
	});

	//$('a[rel=_blank]').attr('target','_blank');
	// dodaj do ulubionych
	$('a[rel=sidebar]').click(function(e){
		if(window.external && typeof(window.external.AddFavorite) != 'undefined' ){
			window.external.AddFavorite(this.href, $(this).attr('title')); return false
		}
	});

	$('input.text, textarea').focus(function(){
		this.style.background = "#ffffff";
	});
	$('input.text, textarea').blur(function(){
		this.style.background = "#dad0cb";
	});

});
