$(document).ready(
	function() {
		$('a').each(
			// The blogger output has our live website hard-coded. We need to change it if I'm
			// doing local or mockup testing.
			function() {
				var href = $(this).attr('href');
				if(typeof href != 'undefined') {
					var matches = href.match(/http:\/\/.*?(corsa).*?\//);
					if(matches !== null) {
						href = href.replace(/http:\/\/(.*?)\//, ('http://' + serverName + '/'));
						$(this).attr('href', href);
					}
				}
			}
		);
		
		if(window.location.href.match(/blogger/) !== null) {
			$('.archivelink').remove();	// the archive link is just for the main pages, not the blogger view
		}
	}
);