// JavaScript Document
	
//this is the function that reveals the news blurbs on the home page	

// toggles the slickbox on clicking the noted link  
// use .live event handler so that it works in ie7
$('p #toggleNews').live('click', function() {
	$this = $(this);
	$("p.news_summary").slideUp(55);
	$('p.headline_selected').removeClass('headline_selected');
	$('a:hidden').slideDown('fast');
	$this.parent().next('p.news_summary').slideToggle('fast');
	$this.slideUp(55);
	$this.parent().addClass('headline_selected');
	return false;
});


