navBarMenus[nextItemNum()] = new Array("  What's it for?", "",
"What's in the name?", "/TRJ/threeriversjunction.htm",
"Latest updates", "/Latest/index.htm",
"Friends and Family", "/Fireplace/index.htm");

navBarMenus[nextItemNum()] = new Array("Art Gallery",  "",
"Art Gallery","/Art/index.html",
"Lev Tsimring's Photo", "http://www.levtsimring.com",
"Alena Borisova", "/Art/AlenaKogan/AlenaBorisova.htm",
"Jennie M - graphics", "/Art/JennieM/Pencil_and_charcoal/index.html",
"Jennie M - oil", "/Art/JennieM/Oil_on_canvas/index.html",
"Jennie M - other", "/Art/JennieM/Other/index.html");

navBarMenus[nextItemNum()] = new Array("Travel", "",
"Panama","/Panama/index.htm",
"Paris","/Paris/index.htm",
"Western Samoa","/WesternSamoa/index.htm",
"South Pacific","/SouthPacific/index.htm",
"Ensenada - La Bufadora","/Ensenada/index.htm",
"San Felipe","/Baja/SanFelipe/index.htm",
"White Sands, New Mexico","/WhiteSands/index.htm",
"Georgetown, D.C.","/Georgetown/index.htm",
"West Virginia","/WestVirginia/index.htm",
"Five Days in American Southwest","/FiveDaysInAmericanSouthwest/index.htm",
"Motor City","/MotorCity/index.htm",
"Moab - just checking", "/Moab/index.htm",
"Moab with LRCSD","/Moab2007/index.htm",
"Colorado with FSJ","/Invasion2002/index.htm",
"Colorado with LRCSD","/Colorado/index.htm",
"Pacific Coast Highway","/PCH2005/index.htm",
"Mono Lake","/MonoLake/index.htm",
"Mammoth Lakes", "/mammoth.htm",
"Lake Tahoe", "/tahoe.htm",
"Mt. Lassen", "/lassen.htm",
"Hollister Hills SVRA", "/hhsvra.htm",
"Bronco Peak with LRCSD", "/LakeMorena/BroncoPeak/index.htm",
"Anza-Borrego Desert", "/anzaborrego.htm",
"Desert Bloom in the Death Valley", "/DeathValley/index.htm",
"Los Coyotes Indian Reservation", "/loscoyotes.htm",
"San Bernardino Mountains", "/sbd.htm",
"San Diego East County", "/sandiegoeast.htm");

navBarMenus[nextItemNum()] = new Array("Gearhead Dept.", "",
"Timeless Classic","http://www.3rj.com/Auto/68Wag/index.htm",
"Junkers' List", "/Auto/automotive.htm",
"Full Size Jeep", "/Auto/79Chief/79Chief.htm",
"Land Rover", "/Auto/LandRover/index.htm",
"Range Rover", "/Auto/RangeRover/index.htm",
"Russian 4x4", "/Auto/russian4x4.htm",
"Lada Niva", "/Auto/Niva/index.htm",
"Home of Quadratrac", "/Auto/QT/index.htm",
"A QT Horror Story", "/Auto/QT/chainstory.htm",
"LED Tachometer", "/Auto/Tach/tachometer.htm",
"Jeep Production Years", "/Auto/Jp/jptimeline.htm",
"San Diego British Car Day 2003", "/BritishCarDay/index.htm",
"San Diego British Car Day 2004", "/BritishCarDay2004/index.htm");

function setVariables() {
imgwidth=211;  // logo width, in pixels
imgheight=28;  // logo height, in pixels
if (navigator.appName == "Netscape") {
horz=".left";
vert=".top";
docStyle="document.";
styleDoc="";
innerW="window.innerWidth";
innerH="window.innerHeight";
offsetX="window.pageXOffset";
offsetY="window.pageYOffset";
}
else {
horz=".pixelLeft";
vert=".pixelTop";
docStyle="";
styleDoc=".style";
innerW="document.body.clientWidth";
innerH="document.body.clientHeight";
offsetX="document.body.scrollLeft";
offsetY="document.body.scrollTop";
   }
}
function checkLocation() {
objectXY="branding";
var availableX=eval(innerW);
var availableY=eval(innerH);
var currentX=eval(offsetX);
var currentY=eval(offsetY);
x=availableX-(imgwidth+40)+currentX;
y=availableY-(imgheight+20)+currentY;
evalMove();
setTimeout("checkLocation()",10);
}
function evalMove() {
eval(docStyle + objectXY + styleDoc + horz + "=" + x);
eval(docStyle + objectXY + styleDoc + vert + "=" + y);
}


