$(document).ready(function(){
$('.artmenu').find('a').click(function(){
var obj = this;
$('.article').slideUp("slow", function(){
$.ajax({
url: 'content.php',
type: "POST",
data: ({hui : obj.href.split(location.hostname+'/#')}),
success:function(msg){
$('.article').html(msg);
$('.article').slideDown("slow");
}
});
});
})
});