//Buttons
$(document).ready(function() {
        $('#galerie').children( '.gallery_box:not(:first)' ).hide();
	$('#button1').css("color", "#ffffff")
        $('#button_wrapper a').click(function(){
          $('#galerie').children( '.gallery_box:not(:nth-child('+this.title+'))' ).hide();
          $('#button_wrapper a').css("color", "#363636");
          $(this).css("color", "#ffffff");
          $('#bild'+this.title).fadeIn('slow');
          return false;
        });
});