$(document).ready(function() {
	prepareSpecialNewsBox();
});

function prepareSpecialNewsBox() {
	$('table.specialNews').click(function() {
		var div = $(this).find('div.collapsible');
		var isShowing = (div.css('display') == 'block');
		if (isShowing) {
			div.slideUp();
			$(this).find('span.click_to_view').text('click to view...');
		} else {
			div.slideDown();
			$(this).find('span.click_to_view').text('click to hide...');
		}
	});
	
	// Highlight the special news table every so often.
	//setInterval("$('table.specialNews td:eq(0)').effect('highlight', {}, 2500);", 7000);
}
