$(document).ready(function(){
	$(document).pngFix();
	
	$(".boxcaption").css("display", "block");
	$(".boxcaptionstart").css("display", "block");
	$(".boxcaption").fadeTo("fast",0.75);
	$(".boxcaptionstart").fadeTo("fast",0.75);
	$('.start_element.peek').hover(function(){   
		$(".cover", this).stop().animate({top:'-205px'},{queue:false,duration:160});   
	}, function() {   
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});   
	});
	
	$('.navi_element.peek').hover(function(){   
		$(".cover", this).stop().animate({top:'-130px'},{queue:false,duration:160});   
	}, function() {   
		$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});   
	});
	
	
	$('.cycle_gallery').cycle({ 
	    fx:      'turnDown', 
	    speed:    800, 
	    timeout:  3000,
	    random: 1,
	    height: '120px'
	});
	
	
});