$(document).ready(function() {
	$('#news-options a').click(function() {
		if ($(this).hasClass('selected'))
			return false;
		
		$('#news-options .selected').removeClass('selected');
		$(this).addClass('selected');
		
		clickedText	= $(this).text().toLowerCase();
		
		$('#homepage-news')
			.after('<p id="news-loading">Thinking&hellip;</p>')
			.slideUp('fast', function() {
				$.get('/homepageNews.php', {type: clickedText}, function(data) {
					$('#homepage-news').html(data).slideDown('fast');
					$('#news-loading').remove();
					clearTimeout(thinkTimer);
				});
			});
		
		var thinkTimer	= setTimeout(function() { $('#news-loading').html('Still thinking&hellip;'); }, 4000);
		
		return false;
	})
});