$(function() {
	$('#navigation a')
	.bind('mouseover', function() { $(this).html('&gt;&gt;'+this.title).css('color','#be3113') } )
	.bind('mouseout', function() { $(this).html('&gt;'+this.title).css('color','#000000') } )
	.bind('click', function(event) { 
		this.blur(); url = this.href;
		$('#article').fadeOut('fast', function() { 
			$('#article').load(url, function() { 
				$('#article').fadeIn('fast'); 
				pageTracker._trackPageview();	
			});
		} );
		return false; 
	});
	
	tpCarousel.init()
});
