
<!--

// hide from older browsers

     if (document.images) {
	
	imag1on = new Image();
	imag1on.src = "images/home_2.gif";

	imag1off = new Image();
	imag1off.src = "images/home_1.gif";

	imag2on = new Image();
	imag2on.src = "images/custom_2.gif";

	imag2off = new Image();
	imag2off.src = "images/custom_1.gif";

	imag3on = new Image();
	imag3on.src = "images/lab_2.gif";

	imag3off = new Image();
	imag3off.src = "images/lab_1.gif";

	imag4on = new Image();
	imag4on.src = "images/pipe_2.gif";

	imag4off = new Image();
	imag4off.src = "images/pipe_1.gif";

	imag5on = new Image();
	imag5on.src = "images/warn_2.gif";

	imag5off = new Image();
	imag5off.src = "images/warn_1.gif";

	imag6on = new Image();
	imag6on.src = "images/quot_2.gif";

	imag6off = new Image();
	imag6off.src = "images/quot_1.gif";
	
	imag7on = new Image();
	imag7on.src = "images/contact_2.gif";

	imag7off = new Image();
	imag7off.src = "images/contact_1.gif";

	
	imag8on = new Image();
	imag8on.src = "images/links_2.gif";

	imag8off = new Image();
	imag8off.src = "images/links_1.gif";

}

function imgOn(imagName) {
  if (document.images) {
    document[imagName].src = eval(imagName + "on.src");
  }
}

function imgOff(imagName) {
  if (document.images) {
    document[imagName].src = eval(imagName + "off.src");
  }
}

function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->


<!--------------------------  End Rollover Script Here  ------------------------------>


<!--
// Date program beginning
function MakeArray(n) {
	this.length = n;
	return this;
}

<!-- Give the days names -->
dayNames = new MakeArray(7);
dayNames[1] = "Sunday";
dayNames[2] = "Monday";
dayNames[3] = "Tuesday";
dayNames[4] = "Wednesday";
dayNames[5] = "Thursday";
dayNames[6] = "Friday";
dayNames[7] = "Saturday";

<!-- Give the month names -->
mthName = new MakeArray(12);
mthName[1] = "Jan";
mthName[2] = "Feb";
mthName[3] = "Mar";
mthName[4] = "Apr";
mthName[5] = "May";
mthName[6] = "Jun";
mthName[7] = "Jul";
mthName[8] = "Aug";
mthName[9] = "Sep";
mthName[10] = "Oct";
mthName[11] = "Nov";
mthName[12] = "Dec";

function displayDate() {

currentTime = new Date();
var thisDay = dayNames[currentTime.getDay() + 1];
var thisDate = currentTime.getDate();
var thisMonth = mthName[currentTime.getMonth() + 1];
var thisYear = currentTime.getFullYear();
var thisHour = currentTime.getHours();
var thisMinute = currentTime.getMinutes();

if (thisMinute < 10) {
  thisMinute = "0" + thisMinute;
}

if (thisHour < 10) {
  thisHour = "0" + thisHour;
}

var thisTime = thisDay + " " + thisDate + " " + thisMonth + ", " + thisYear + " " + thisHour + ":" + thisMinute;

document.write('<font face="Verdana, Arial, Helvetica, sans-serif" size="1" color="#333333">' + '<b>' + thisTime + '</b>' + '</font>');

}
//->



<!--------------------------  End Date Script Here  ------------------------------>


