//Einblenden Titel und Link mit Maske Slideshow - Home
jQuery.fn.masque = function(classe) {

$(this).hover(function(){
$(this).find(classe).stop().animate({height:'20px',opacity: '1.0'},400);
},function () { 
$(this).find(classe).stop().animate({height:'0',opacity: '0'}, 400);
});
}   
$(document).ready(function(){$('.slider p').masque('.masque');});

// Slideshow Einstellungen - Home
$(document).ready(
		function(){
			$('#slideshow').innerfade({
				speed: 'slow',
				timeout: 5000,
				type: 'random_start',
				containerheight: '370px'
			});	
		}
	);
