$(document).ready(function(){
	$('.map-emo-bild-inhalt').cycle({ 
	    fx:     'fade', 
	    speed:  2000, 
	    next:   '.slideNext', 
	    prev:   '.slidePrev', 
	    timeout: 8000, 
	    startingSlide: 0
	});	
	
		$('.slideshow').cycle({
		fx: 'scrollHorz',
		speed:  1000, 
    timeout: 0, 
    delay: -1000,
    next:   '#next', 
    prev:   '#prev'
	});
	
	$('.galeriebild').hover(function(){
		$('> .challengeblack',this).fadeOut("fast");
	}, function(){
		$('> .challengeblack',this).fadeIn("fast");
	});

	$('.galeriebild-last').hover(function(){
		$('> .challengeblack',this).fadeOut("fast");
	}, function(){
		$('> .challengeblack',this).fadeIn("fast");
	});
	
	
});





