$(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_') {
			if (page.substr(page.indexOf('#'),7)=='#page_1') 
				{
					$('.img').animate({opacity:'1'},700);
					$('#content').css({zIndex:'1'});
				} 
				else 
				{
					$('.img').animate({opacity:'0'},700);
					$('#content').css({zIndex:'3'});
				}
				$('#menu a, footer a').parent().removeClass('active');
				$(this).parent().addClass('active');
				$(act).animate({width:'0', marginLeft:'100%', left:'0%'}, 800,'easeInExpo', function()
					{
						$('#content').find('article').css({display:'none'});
						$(page).css({display:'block'}).animate({ width:'100%', marginBottom:'0%', marginLeft:'0%', left:'0%'}, 800,'easeInExpo',function(){act=page;});
					});
				return false;
			}
	})
})
