<!--    Start externally added code here

// Start code for navigation rollover images
  // Instantiate 'ArrOff' and pre-cache all 'off' button images
  var ArrOff = new Array()
    ArrOff[1]  = new Image(25,25)

  // Instantiate 'ArrOn' and pre-cache all 'on' button images
  var ArrOn = new Array()
    ArrOn[1]  = new Image(25,25)

  // Set 'off' image path for each button
  ArrOff[1].src  = "../images/pixel-clear.gif";
 
  // Set 'on' image path for each button
  ArrOn[1].src  = "../images/ch-25-r.gif";

function move_in(img_name,i) {
  if (document.images) {
document[img_name].src = ArrOn[i].src;
  }
}

function move_out(img_name,i) {
  if (document.images) {
document[img_name].src = ArrOff[i].src;
  }
}




function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}
var preloadFlag = false;

function preloadImages() {
	if (document.images) {
//		over_top_of = newImage(/*URL*/'../../GB-Distributors/images/top-on.gif');
//		down_top_of = newImage(/*URL*/'../../GB-Distributors/images/top-of.gif');
		over_top_of = newImage('images/top-on.gif');
		down_top_of = newImage('images/top-of.gif');
		preloadFlag = true;
	}
}
// End code for navigation rollover images



// Start code for browser identification
// End code for browser identification

// Start code to determine the current time
function tod() {
	var today   = new Date();
	var year    = today.getYear();
	var month   = today.getMonth();
	var date    = today.getDate();
	var day     = today.getDay();
	var time    = today.getTime();
	var hours   = today.getHours();
	var minutes = today.getMinutes();
	var seconds = today.getSeconds();

	if (hours == 12) {
	  var amorpm = "p.m.";
	  } else if (hours == 0 ) {
	  hours = 12;
	  var amorpm = "a.m.";
	  } else if (hours > 12 ) {
	  hours = hours - 12;
	  var amorpm = "p.m.";
	  } else {
	  var amorpm = "a.m.";
	}

	// These two if statements add zeroes where needed to 'sanitize' the display
	if (minutes < 10) minutes = "0" + minutes;
	if (seconds < 10) seconds = "0" + seconds;

	var arrMonths = new Array("Jan","Feb","Mar","Apr","May","June","July","Aug","Sept","Oct","Nov","Dec");
	var month = arrMonths[today.getMonth()];

	var arrDays   = new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
	var day = arrDays[today.getDay()];

	if (year < 2000) {
	  year = year + 1900
	}
	document.write(day + " - " + month + " " + date + ", " + year + " - " + hours + ":" + minutes + " " + amorpm);
}
// End code to determine the current time

//     End externally added code here  -->
