( function($) {
$(document).ready(function() {
	$('#latestNewsBox > ul > li > a').attr('href','javascript:void(0);');
	$('#latestNewsBox > ul > li > a').click(function() {
		var selItem = $(this).parent().attr('id');
		
		$('#latestNewsBox > ul > li > a').removeClass();
		$('#latestNewsBox > div').removeClass();
		$('#latestNewsBox > ul > li#'+selItem+' > a').addClass('selected');
		$('#latestNewsBox > div#'+selItem+'-content').addClass('selected');		
	});
	
	$('h3.headingTitle > a').attr("href","javascript:void(0);");
	$('h3.headingTitle > a').click( function() {
		$theSession = $(this).parent().attr("id");
		$('#'+$theSession+'Text').slideToggle('fast');
		if ($(this).html().indexOf(' (+)') != -1) {
			$(this).html($(this).html().substring(0,$(this).html().lastIndexOf(' (+)')) + " (-)");
		} else {
			$(this).html($(this).html().substring(0,$(this).html().lastIndexOf(' (-)')) + " (+)");
		}
	});
});
} ) ( jQuery );
