jQuery(function($) {
	$('.promos .thumbs a').click(function() {
		$(this).addClass('selected').siblings().removeClass('selected');
		$( $(this).attr('href') ).show().siblings('.promo').hide();
		return false;
	}).hover(function() {
		$(this).click();
		return false;
	}, function() {
	});
	
	$('.promos .thumbs a:first').click();
});

// format press release alerts
jQuery(function($) {
	var news = $('#recent-news ul');
	$('.NewsHeadlineList').each(function() {
		var html = $(this).html();
		if ( html.indexOf('[ALERT]') != -1 ) {
			html = html.replace('[ALERT]', '');
			$(this).html( html );
			$(this).addClass(' news-alert');
		}
	});
});