$(document).ready(function(){
	
	// Removes the "news" underline if there is more than one
	if($('img.underline').length > 1) {
		$('img#menuNews').remove();
	}
	
	// Replace h4.serendipity_title with rendered images	
	$('h4.serendipity_title a').each(function() {
		var text=$(this).text();
		text=text.replace(/ /g, "  ");
		
		$(this).html('<img src="/cgi-bin/render.cgi?string='+text+'&style=heading" alt="'+text+'" />');
	});
});
