jQuery(document).ready(function($) { 
	// fade out any flash messages we may have after 5 seconds
	setTimeout('$("div.message[id$=Message]").fadeOut();', 5000);
	// remove the final divider on homepage news ul li
	$('#wrapper .latestNews ul li:last').css('background-image', 'none');
	// make the scrollbar happen
	if($('.scrollPanel').length > 0) {
		$('.scrollPanel').jScrollPane({scrollbarOnLeft:true, scrollbarWidth: 5, showArrows:true});	
	}
});
