//Show and hide upon click with css properties
$("#NextButton").click(function() {
$("#Page1").css("display", "block");
$("#Page0").css("display", "none");
});
//Example #2
$('.show-header-search').click(function() {
$('.header-search').fadeIn(200);
});