$(document).ready(function(){	
						 
	$('.fancy').fancybox({'overlayShow': true });
	
	$('#plume')
	.sprite({fps: 25, no_of_frames: 4})
	.active()
	.activeOnClick();
	$('html').flyToTap(); // the active sprite will fly to any clicked point on the page...
	
	$('#back')
	.pan({fps: 50, speed: 3, dir: 'right'});

});

		
		
	
	
$(document).ready(function(){
	
$('#mk #navigation img').css('opacity','0.9');
$('#contact, #profil').css('opacity','1');

$('#mk #navigation img').mouseover(function() {
			$(this).css('opacity','1');
			
			}).mouseout(function() {
			$(this).css('opacity','0.9');	
		
});


$('#contact, #profil').mouseover(function() {
			$(this).css('opacity','0.8');
			
			}).mouseout(function() {
			$(this).css('opacity','1');	
		
});	
	
		
});




$(document).ready(function(){
	
	$('#contact').css('width','5.5%');


$('#contact').hover(function(){
		$(this).css('width','6%')
		}, function(){
			$(this).css('width','5.5%');
	});	

			
		
});



