
// on DOM ready
$(document).ready(function(){

	// Fancybox
	$("a.zoom").fancybox({ // single fancyboxes
		'overlayColor' : '#000',
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'titlePosition' : 'inside',
		'changeSpeed' : 0,
		'overlayOpacity' : 0.4
	});
	
	//Innerfade Mainteaser
	$("#mainteaser").innerfade({ 
		'animationtype' : 'fade', 
		'speed' : 1000, 
		'timeout' : 5000, 
		'type' : 'sequence' 
	}); 
	
	// Replace h1 with link
	$('#header h1').replaceWith('<a href="index.php"><h1><img src="images/seehotel_logo.gif" alt="Seehotel Restaurant Die Ente" /></h1></a>');

});
