function espanol(){
	var firstDirectory = location.pathname.substring(1,8);
	locationPathname = new String;
	locationPathname = location.pathname;
	chunkStart = locationPathname.indexOf('/');
	if (firstDirectory != 'espanol'){
		document.write('<a href="/espanol' + locationPathname + '" class="globalnav_esp" target="_top">&raquo; Espa&ntilde;ol</a>');
	}else{
		shortenedLocationPathname = locationPathname.slice(chunkStart+8,locationPathname.length);
		document.write('<a href="' + shortenedLocationPathname + '" class="globalnav_esp" target="_top">&raquo; English</a>');
	}
}

