$(document).ready(function() {


	$('#newsNav li a').click(function(){
								  
		var toLoad = $(this).attr('href')+' #newsLoad';
		$('#newsLoad').hide('fast',loadContent);

		function loadContent() {
			$('#newsLoad').load(toLoad,'',showNewContent());
		}
		function showNewContent() {
			$('#newsLoad').show('fast');
		}
		return false;
		
	});

});