$(function(){
	$(".navipunkt").hover(
		function(){
			$(this).addClass("navi_over");
		},
		function(){
			$(this).removeClass("navi_over");
		}
	);

	// select the thumbnails and make them trigger our overlay 
	$(".gallerylink").overlay({ 
	 
	    // each trigger uses the same overlay with the id "gallery" 
	    target: '#gallery', 
	 
	    // optional exposing effect 
	    expose: '#f1f1f1' 
	 
	// let the gallery plugin do its magic! 
	}).gallery({ 
	 	template: '<strong>${title}</strong> <span>Bild ${index} von ${total}</span>',
	    // the plugin accepts its own set of configuration options 
	    speed: 800 
	});

	
});