$(document).ready(function(){	
	$("#slider").easySlider({	
				controlsShow:	true,
			prevId: 		'prevBtn',
			prevText: 		'',
			nextId: 		'nextBtn',	
			nextText: 		'',
	});
	
});


window.onload = function(){
	$("ul.navigation").fadeIn(1500);
}



$(document).ready(function(){
			
			

			
	//scroll to anchor
	$('.navigation .startseite, #metanavi .startseite').click(function(event){
			event.preventDefault();
			$('#startseite').ScrollTo(1500);
			return true;
	});
	$('.navigation .verein, #metanavi .verein').click(function(event){
			event.preventDefault();
			$('#verein').ScrollTo(1500);
			return true;
	});
	$('.navigation .projekte, #metanavi .projekte').click(function(event){
			event.preventDefault();
			$('#projekte').ScrollTo(1500);
			return true;
	});
	$('.navigation .kontakt, #metanavi .kontakt').click(function(event){
			event.preventDefault();
			$('#kontakt').ScrollTo(1500);
			return true;
	});
	
	
	
	

});


this.tooltip = function(){	
	/* CONFIG */		
		xOffset = -38;
		yOffset = 25;		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result		
	/* END CONFIG */		
	$("a.tooltip").hover(function(e){											  
		this.t = this.title;
		this.title = "";									  
		$("body").append("<p id='tooltip'>"+ this.t +"</p>");
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("middle");		
    },
	function(){
		this.title = this.t;		
		$("#tooltip").remove();
    });	
	$("a.tooltip").mousemove(function(e){
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};



// starting the script on page load
$(document).ready(function(){
	tooltip();
});