$(document).ready(function(){
$('.content').load('shibumi.php');
$('#jsddm a').click(function() {
$(".content").slideUp("slow");
 var content_show = $(this).attr("title");
$.ajax({
method: "get",url: "shibumi.php",data: "page="+content_show,
beforeSend: function(){$("#loading").show("fast");},
complete: function(){ $("#loading").hide("fast");},
success: function(html){
$(".content").show("slow");
$(".content").html(html);
}
});
});
});

