$j(document).ready(function(){
	
	//what's going on tabber
	$j('.whats_going_on .content .events').hide();
	
	$j('a#news').click(function(){
		if(!$j('a#news').hasClass('active')) { 
			$j('a#news').addClass('active');
			$j('a#events').removeClass('active');
			$j('.whats_going_on .content .news').show();
			$j('.whats_going_on .content .events').hide();
		}
	});
	
	$j('a#events').click(function(){
		if(!$j('a#events').hasClass('active')) { 
			$j('a#news').removeClass('active');
			$j('a#events').addClass('active');
			$j('.whats_going_on .content .news').hide();
			$j('.whats_going_on .content .events').show();
		}
	});
		
});
