// JavaScript Document
var fileName;
var raw=document.URL;
var newURL=raw.replace(/.html?$/, ".shtml");
fileName=getFileName(newURL);
loseTheJ();
window.location.href = fileName;
function getFileName(tr){
	len = tr.length 
	for (i = len; i > 0; i--) { 
		var vb = tr.substring(i,i+1);
		if (vb == "/") { 
			return(tr.substring(i+1,len)) 
		} 
	}
} 
function loseTheJ(){//Post.Harvard is replete with duplicate files and framesets with the prefix j for whatever reason
//Redirect to the same name without the j unless the file is the only legitimate html file name that begins with a j
	if (fileName.charAt(0)=="j" && fileName!="joint_member.shtml"){
		fileName = fileName.slice(1);
	}
}
