$(function(){
	var LoadMsg = 'A carregar...';
	var AjaxPath = 'paginas/';
	$('#nav a').click(function(){
		if(!$(this).hasClass("current")) {
			var _Href = $(this).attr('href');
			$('#nav a').removeClass("current");
			$(this).addClass("current");
			$('<div id="loading">'+LoadMsg+'</div>').appendTo('body').fadeIn('slow',function(){
				$.ajax({
					type:	'GET',
					url:	AjaxPath+_Href,
					dataType:	'html',
					timeout:	5000,
					success: function(d,s){
							$('#loading').fadeOut('slow',function(){
								$(this).remove();
								$('#wrapper').fadeOut('slow',function(){
										$(this).html(d).fadeIn('slow');
									});
								});
							},
					error: function(o,s,e){
								$('#loading').html('Ajax Request Failed: '+s);
								eTimer(_Href);
							}
				});
			});
		}
		return false;
	});
	
	function eTimer(url) {
		var t=setTimeout("window.location='"+url+"'",1000);
		$('#loading').fadeOut('slow');
	}
});

