var newsToggle = 0;
$(document).ready(function() {
	$('#big-news .tab a').click(function(e) {
		e.preventDefault();
		if (newsToggle == 0) {
			$('#big-news').animate(
				{ top: '-206px' },
				1600,
				'easeOutElastic'
				);
			$('#big-news .tab a').text('Word! Close it!');
			newsToggle++;
		} else {
			$('#big-news').animate(
				{ top: '-726px' },
				1200,
				'easeOutBounce'
				);
			$('#big-news .tab a').text('Big News!');
			newsToggle--;
		}
		return false;
	});
});