//Updated to Spanish version 9-10-04 by William Milligan

//Find the relative path of the current page.

var myArray = new Array();
var myURL = location.href;
var myFile;
var myDir;
myArray = myURL.split("/");
myFile = myArray[myArray.length - 2] + "/" + myArray[myArray.length - 1];
myDir = myArray[myArray.length - 1];

//Write the menu with different paths if you are on the home page or the search page.
if (myFile=='spanish/index.html' || myFile=='spanish/search.html' || myFile=='spanish/webpolicy.html' || myFile=='spanish/credits.html' || myFile=='spanish/contact.html' || myDir==''){
document.write("<MAP name='nav_map'><area href='http://www.hvtn.org/spanish/index.html' SHAPE=rect coords='10,90,115,118' border=0 alt='Portal' title='Portal'><area href='http://www.hvtn.org/spanish/about/index.html' SHAPE=rect coords='116,90,210,118' border=0 alt='Nosotros' title='Nosotros'><area href='http://www.hvtn.org/spanish/science/index.html' SHAPE=rect coords='211,90,310,118' border=0 alt='Ciencia' title='Ciencia'><area href='http://www.hvtn.org/spanish/community/index.html' SHAPE=rect coords='311,90,405,118' border=0 alt='Comunidad' title='Comunidad'><area href='http://www.hvtn.org/spanish/media/index.html' SHAPE=rect coords='406,90,499,118' border=0 alt='Medios' title='Medios'><area href='http://www.hvtn.org/spanish/search.html' SHAPE=rect coords='500,90,590,118' border=0 alt='Busqueeda' title='Busqueda'></MAP>");
//If you are not on the home page, you must path up one directory.
}else{
document.write("<MAP name='nav_map'><area href='http://www.hvtn.org/spanish/index.html' SHAPE=rect coords='10,90,115,118' border=0 alt='Portal' title='Portal'><area href='http://www.hvtn.org/spanish/about/index.html' SHAPE=rect coords='116,90,210,118' border=0 alt='Nosotros' title='Nosotros'><area href='http://www.hvtn.org/spanish/science/index.html' SHAPE=rect coords='211,90,310,118' border=0 alt='Ciencia' title='Ciencia'><area href='http://www.hvtn.org/spanish/community/index.html' SHAPE=rect coords='311,90,405,118' border=0 alt='Comunidad' title='Comunidad'><area href='http://www.hvtn.org/spanish/media/index.html' SHAPE=rect coords='406,90,499,118' border=0 alt='Medios' title='Medios'><area href='http://www.hvtn.org/spanish/search.html' SHAPE=rect coords='500,90,590,118' border=0 alt='Busqueeda' title='Busqueda'></MAP>");
}

