this.tooltip = function(){	
	/* CONFIG */		
		xOffset = 10;
		yOffset = 20;		
		// these 2 variable determine popup's distance from the cursor
		// you might want to adjust to get the right result		
	/* END CONFIG */		
	$(".linkbildtool").hover(function(e){											  
		this.t = $(this).find("img").attr("beschreibung");
		this.title = "";									  
		$("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();
    });	
	$(".linkbildtool").mousemove(function(e){
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};



 $(document).ready(
			function(){
				$('ul#slideshowkopf').innerfade({
					speed: 1000,
					timeout: 3000,
					type: 'sequence',
					containerheight: '55px'
				});

$('.slideshow').after('<div id="nav" class="navi">').cycle({
    fx:     'fade',
    speed:  '2000',
    timeout:'5000',
    pager:  '#nav'             
});

	$(".accordionueberschrift").click(function()
    {
		$(this).next(".accordioninhalt").slideToggle(200).siblings(".accordioninhalt").slideUp("slow");

	});



	tooltip();
});
