 $(document).ready(function(){

	$("#toggle-all").css({'color' : '#f8a036', 'font-weight' : 'normal'});
 	
    $("#toggle-info").click( function() {
    	$(this).css({'color' : 'white', 'font-weight' : 'bold'});
    	$("#toggle-location").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-artists").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-gallery").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-all").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#info").slideDown("slow");
    	$("#location").slideUp("slow");
    	$("#artists").slideUp("slow");
    	$("#gallery").slideUp("slow");
    });
    
    $("#toggle-location").click( function() {
    	$(this).css({'color' : 'white', 'font-weight' : 'bold'});
    	$("#toggle-info").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-artists").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-gallery").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-all").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#info").slideUp("slow");
    	$("#location").slideDown("slow");
    	$("#artists").slideUp("slow");
    	$("#gallery").slideUp("slow");
    });
    
    $("#toggle-artists").click( function() {
    	$(this).css({'color' : 'white', 'font-weight' : 'bold'});
    	$("#toggle-location").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-info").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-gallery").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-all").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#info").slideUp("slow");
    	$("#location").slideUp("slow");
    	$("#artists").slideDown("slow");
    	$("#gallery").slideUp("slow");
    });
    
    $("#toggle-gallery").click( function() {
    	$(this).css({'color' : 'white', 'font-weight' : 'bold'});
    	$("#toggle-location").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-artists").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-info").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-all").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#info").slideUp("slow");
    	$("#location").slideUp("slow");
    	$("#artists").slideUp("slow");
    	$("#gallery").slideDown("slow");
    });
    
    $("#toggle-all").click( function() {
    	$(this).css({'color' : 'white', 'font-weight' : 'bold'});
    	$("#toggle-location").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-artists").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-gallery").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#toggle-info").css({'color' : '#f8a036', 'font-weight' : 'normal'});
    	$("#info").slideDown("slow");
    	$("#location").slideDown("slow");
    	$("#artists").slideDown("slow");
    	$("#gallery").slideDown("slow");
    });

  });