$(document).ready(function(){
 
			//hide all containers from start
			$(".container").hide();		
			$(".slide").click(function(){
			//if current slide is aktiv
			if ($(this).hasClass(".slide_active")) {
				//close its container, make slide inaktive
				$(this).next(".container").slideToggle("slow");
				$(this).removeClass("slide_active");
			} //else (current slide is inaktive)
			else {
				//take all (!) aktive slides, close their containers and make them inaktive
				$(".slide_active").next(".container").slideToggle("slow");
				$(".slide_active").removeClass("slide_active");
				//then open the current slide's container and make it aktive
				$(this).next(".container").slideToggle("slow");
				$(this).addClass("slide_active");
			}
			return false;
			});


$('#banneralt').hide();  //if javascript enabled
$('#parallax').show();
$('#parallax').jparallax({}, {ytravel: '0px'}, {ytravel: '0px'}, {ytravel: '0px'},  {ytravel: '0px', xtravel: '0px'} );

$('#photos').galleryView({
	panel_width: 800,
	panel_height: 300,
	frame_width: 100,
	frame_height: 100
});

});
