(function($){
	
	
	
	$( "#kontakt" ).slideUp( 0 );
	
	
	
	$.waypoints.settings.scrollThrottle = 30;
	$( "#nav-toggle" ).waypoint(function(event, direction) {
		$( "body" ).toggleClass( 's-scrolled', direction === "down" );
		event.stopPropagation();
	});
	
	
	
	
	$( ".gallery-img" ).live("click",function(e){
		galleryNextImage(e);
	});
	
	$( ".gallery-link-next > a" ).bind("click",function(e){
		galleryNextImage(e);
	});
	
	$( ".headerToggle" ).bind("click",function(){
		headerToggle();
	});
	
	
	
	
	function galleryNextImage(e) {
		var g = $( e.target ).parent().parent( ".gallery" );
		var n = ( g.find( ".s-focus" ).next().is("div") ) ? g.find( ".s-focus" ).next() : g.find( ".img-1" );
		g.find( ".s-focus" ).removeClass( "s-focus" );
		n.addClass( "s-focus" );
	}
	
	
	
	
	function headerToggle() {
		$( "#kontakt" ).slideToggle( 400 );
	}
	
	
	
	
})(this.jQuery);
