$(function() {
	// Set rel=external to pop up in different window
	$('a[href][rel=external]').attr('target', '_blank');
		
	$("#top_navigation li").hover(function () {
		$(this).removeClass('top_nav_up');
		$(this).addClass('top_nav_down');
	}, function () {
		$(this).removeClass('top_nav_down');
		$(this).addClass('top_nav_up');
	});

	// News Container links
	$(".newsLeft").click(function()  { 
		$(this).parent().removeClass('newsBgRight').addClass('newsBgLeft'); 
		$(".events").hide();
		$(".latestNews").show();
		return false; 
	});
	$(".newsRight").click(function() { 
		$(this).parent().removeClass('newsBgLeft').addClass('newsBgRight'); 
		$(".latestNews").hide();
		$(".events").show();
		return false; 
	});
});
