
var settings = { start:0, change:false }; 
$("#tresc ul.idTabs").idTabs(settings,true); 
  
$(document).ready(function() {
/*$("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});*/
// ------------------------------------------------------------------------------------ OCHRONA MAILA - POMYSL... http://viebrock.ca
$('a.email').each(function(){
	e = this.rel.replace('*','@');
	this.href = 'mailto:' + e;
	$(this).text(e);
});
// ------------------------------------------------------------------------------------ TOOLTIP
$(".tooltip").hover(function(e){	
	this.t = this.title;
	this.title = "";	
	xOffset = -22;
	yOffset = 12;		
	$("body").append("<p id='tooltip'>"+ this.t +"</p>");
	$("#tooltip").css("top",(e.pageY - xOffset) + "px").css("left",(e.pageX + yOffset) + "px").fadeIn("fast");	
},
function(){
	this.title = this.t;		
	$("#tooltip").remove();
});	
$(".tooltip").mousemove(function(e){
	$("#tooltip").css("top",(e.pageY - xOffset) + "px").css("left",(e.pageX + yOffset) + "px");
});
//
//
$(".tooltip-lewy").hover(function(e){	
	this.t = this.title;
	this.title = "";	
	xOffsetLewy = -22;
	yOffsetLewy = 12-130-50;		
	$("body").append("<p id='tooltip-lewy'>"+ this.t +"</p>");
	$("#tooltip-lewy").css("top",(e.pageY - xOffsetLewy) + "px").css("left",(e.pageX + yOffsetLewy) + "px").fadeIn("fast");	
},
function(){
	this.title = this.t;		
	$("#tooltip-lewy").remove();
});
$(".tooltip-lewy").mousemove(function(e){
	$("#tooltip-lewy").css("top",(e.pageY - xOffsetLewy) + "px").css("left",(e.pageX + yOffsetLewy) + "px");
});
});

