
	$(function() {
	
		$('#feature-links a').click(function(e) {
		
			e.preventDefault();
			$this = $(this);
			var element = $('#'+$this.attr("id")+"-content");


			$('#feature-pointer').animate({
				left: Math.floor($this.position().left + ($this.width()/2)) - 10
			}, 1000, function() {
				
				$('#success-message').fadeOut('slow', function() {
					$(this)
						.html(element.html())
						.fadeIn("slow");
				});	
				
			});

		});
		
		
		$('#latest-jokes').click();
		
		
	
	});
