// JavaScript Document

function writeLocationBar(){
if (arguments.length==0) return;
document.write('<div class="locationBar">'+"You're here: ");
var x=arguments.length-1,y;
for (i=0;i<=x;i++) {
  y=arguments[i].split("::");
  if (i<x) {
	  document.write('<a href="'+y[1]+'">'+y[0]+'</a>> ');
  } else {
	  document.write(y[0]);
  }
}	
document.write('</div>');
}

function fixCurrentMenuItems() {
if (arguments.length >=1) {
	document.getElementById(arguments[0]).className="navB-selected";		
}
if (arguments.length >=2) {
	document.getElementById(arguments[1]).className="navB-selected";		
}	
}


