/*
$(document).ready(function(){
$("#fade h4").click(function(){
$("#load").show();
$('h4.active').next("div").fadeOut(0);
$('h4.active').removeClass('active');
$(this).next("div.page").fadeIn(1000,(function(){
$("#load").hide();}));
$(this).addClass('active');		       
});	
});
*/$(document).ready(function(){

$("#fade h4").click(function(){

$("#load").show();

$('h4.active').next("div").fadeOut(0);

$('h4.active').removeClass('active');

$(this).next("div.page").show(0).animate({top:"+=30"}, 200).animate({top:"-=30"}, 900,(function(){

$("#load").hide();}));

$(this).addClass('active');		       

});	

});
