$(function() {
	$("a[rel=external]").attr("target", "_blank");
	$("a[rel=map]").click( function(){
		var wo = window.open($(this).attr("href"),"map","width=590,height=750,resizable=1,scrollbars=1,menubar=1");
		return false;
	});

	if(!location.href.match(/^http/)){
		$("a[href$='/']").not("a[href^='http']").each( function(){
			$(this).attr('href', $(this).attr('href') + 'index.html');
		});
	}
});

