$(function(){
    $('#home').fadeIn('slow');

    $(".button").click(function() {
    	$('#sections').children().hide();
     	$("#"+ this.name).fadeIn("slow")
    });

});

