this.tooltip = function(){			
	xOffset = 5;
	yOffset = 10;			
		
	$(".tooltip").hover(function(e){											  
		 
		$("body").append("<p id='tooltip'>"+MSG_KVAZAR+"</p>");

		 

		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");		
		},

		function(){
			$("#tooltip").remove();
		}
	);	
			
	$(".tooltip").mousemove(
		function(e){
			$("#tooltip").css("top",(e.pageY - xOffset) + "px").css("left",(e.pageX + yOffset) + "px");
		}
	);	
};


this.toogler = function(){
	if ($(".proj ul").length > 0){
	   	$(".proj ul:not(:first)").hide();
		$(".proj h4").click(function(){
       		$(this).next("ul").slideToggle("slow").siblings("ul:visible").slideUp("slow");
		});
	}
}