$(function(){
	$('#content').find('article').hide().css({ width:'0', marginLeft:'0%', left:'50%'});
	var act='#page_1';
	$('#page_1').show();
	$('a').click(function(){
		page=$(this).attr('href');
		if (page.substr(page.indexOf('.'),5)=='.html') { return true}
		if (page.substr(page.indexOf('#'),6)=='#page_') {
				$('#menu a, footer a').parent().removeClass('active');
				$(this).parent().addClass('active');
				$(act).animate({width:'0', marginLeft:'0%', left:'50%'}, 600,'easeInCirc', function(){$('#content').find('article').css({display:'none'});$(page).css({display:'block'}).animate({ width:'100%', marginLeft:'0%', left:'0%'}, 600,'easeOutCirc',function(){act=page;});});
				return false;
			}
	})
})
