$(function(){
	$('#content').find('.article').hide().css({height:'0%', top:'50%'});
	var act='#page_1';
	$('a').click(function(){
		page=$(this).attr('href');
		if (page.substr(page.indexOf('.'),5)=='.html') { return true}
		if (page.substr(page.indexOf('#'),6)=='#page_') {
			if (page=='#page_0') {$('.body1').fadeOut(400);} else {
			$('.body1').fadeIn(400);}
				$('#menu li').removeClass('active');
				$(this).parent().addClass('active');
				$(this).parent().parent().parent().addClass('active');
				$(this).parent().find('ul > li:eq(0)').addClass('active');
				Cufon.refresh();
				$(act).animate({height:'0%', top:'50%'}, 400,'easeOutQuad', function(){$('#content').find('.article').hide();$(page).show().animate({height:'100%', top:'0%'}, 600,'easeOutBack',function(){act=page;});});
				return false;
			} else {return true}
	})
})
