$(document).ready(function(){	  	
		
		$('.slideshow').cycle({
			fx: 'fade'
		});
		
		$("#iglu,#nor,#schnee,#eoft,#24h,#4000er,#kletter,#wallis,#brenta,#meran,#camp,#foto,#basic,#vhs").hover(function() {
	  		$(this).animate({opacity: 0.8},"fast");
		}, 
		function() {
	  		$(this).animate({opacity: 1},"fast");
		});
				
	});