<!--
var base = "/images/";

if (document.images){
	img1on = new Image();   img1on.src = base + "lower_ln_about_b.gif";
	img1off = new Image();   img1off.src = base + "lower_ln_about_a.gif";
	
	img2on = new Image();   img2on.src = base + "lower_ln_help_b.gif";
	img2off = new Image();   img2off.src = base + "lower_ln_help_a.gif";
	
	img3on = new Image();   img3on.src = base + "lower_ln_news_b.gif";
	img3off = new Image();   img3off.src = base + "lower_ln_news_a.gif";
}

function WaxOn(imgName){
	if (document.images){
		document[imgName].src = eval(imgName + "on.src");
	}
}

function WaxOff(imgName){
	if (document.images){
		document[imgName].src = eval(imgName + "off.src");
	}
}

//WriteDate() just writes out the date
 function WriteDate() {
var today=new Date();
 
if(today.getDay() == 0){
        document.write("Sunday");}
if(today.getDay() == 1){
        document.write("Monday");}
if(today.getDay() == 2){
        document.write("Tuesday");}
if(today.getDay() == 3){
        document.write("Wednesday");}
if(today.getDay() == 4){
        document.write("Thursday");}
if(today.getDay() == 5){
        document.write("Friday");}
if(today.getDay() == 6){
        document.write("Saturday");}
document.write (", ");
if(today.getMonth() == 0){
        document.write("January");}
if(today.getMonth() == 1){
        document.write("February");}
if(today.getMonth() == 2){
        document.write("March");}
if(today.getMonth() == 3){
        document.write("April");}
if(today.getMonth() == 4){
        document.write("May");}
if(today.getMonth() == 5){
        document.write("June");}
if(today.getMonth() == 6){
        document.write("July");}
if(today.getMonth() == 7){
        document.write("August");}
if(today.getMonth() == 8){
        document.write("September");}
if(today.getMonth() == 9){
        document.write("October");}
if(today.getMonth() == 10){
        document.write("November");}
if(today.getMonth() == 11){
        document.write("December");}
document.write (" ");
document.write (today.getDate());
var y = today.getYear();
if ( y < 1000 ) y += 1900;
document.write (", "+y);

//var tmp = today.getHours();
//var hr = (tmp <= 12) ? tmp : (tmp-12);
//hr = ( hr < 10 ) ? "0" + hr : hr;
//var sym = (tmp < 12) ? " a.m." : " p.m.";
//if (hr == "00"){hr=12;}

//var TodayMinutes = (( today.getMinutes() < 10) ? "0" : "" ) + today.getMinutes();
//var TodaySeconds = (( today.getSeconds() < 10) ? "0" : "" ) + today.getSeconds();
//document.write(hr + ":" + TodayMinutes + ":" + TodaySeconds + sym);
}    
//-->