
	var LoadMsg = '<img src="images/loading.gif">';
	
	function loadArticle(id) {
			$('#contentArea').fadeOut('slow',function(){
				$(this).html("").fadeOut('slow');
			});
			var _Href = "loadArticle.php?iArticleId="+id;
			$('<div id="loading">'+LoadMsg+'</div>').appendTo('body').fadeIn('slow',function(){
				
				$.ajax({
					type:	'GET',
					url:	_Href,
					dataType:	'html',
					timeout:	5000,
					success: function(d,s){
							$('#loading').fadeOut('fast',function(){
								$(this).remove();
								$('#contentArea').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+"'",5000);
		$('#loading').fadeOut('slow');
	}
