$(document).ready(function(){

    	$('.slideshow').cycle({
			fx: 'fade'
		});
		
		$("#menu li").click(function(){
	  	window.location=$(this).find("a").attr("href"); return false;
		});
		
		$('#ice a,#bergans a,#mammut a,#map a,#lofoten,#peru,#greenland,#nose,#picos').hover(function() {
	  		$(this).animate({opacity: 0.8},"fast");
		}, 
		function() {
	  		$(this).animate({opacity: 1},"fast");
		});
	});