// JavaScript Document
function postDate(){

var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write(dayarray[day]+", "+montharray[month]+" "+daym+", "+year)
}

function postYear(){
	new Date();
var d = new Date();
document.write("&nbsp;&nbsp;"+d.getFullYear()); 
}
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

preLoader = function(){
	<!--hide from older browsers 

     var count = 0; 

     function preLoad() {
		 
     one = new Image(); 
     one.onload = loadCheck; 
     one.src = "images/menu_arrow.gif"; 

     two = new Image(); 
     two.onload = loadCheck; 
     two.src = "images/more_link_ovr.gif"; 

     three = new Image(); 
     three.onload = loadCheck; 
     three.src = "images/home_nav_profile_on.gif"; 
    
     four = new Image(); 
     four.onload = loadCheck; 
     four.src = "images/home_nav_contact_on.gif"; 
    
     five = new Image(); 
     five.onload = loadCheck; 
     five.src = "images/home_nav_links_on.gif"; 
    
     six = new Image(); 
     six.onload = loadCheck; 
     six.src = "images/home_nav_profile_on.gif"; 
    
   	 seven = new Image(); 
     seven.onload = loadCheck; 
     seven.src = "images/throbber2.gif"; 

/*
	 eight = new Image(); 
     eight.onload = loadCheck; 
     eight.src = "images/home_nav_contact.gif";*/
     } 

     function loadCheck() { 
     count++; 
     if(count == 7){ 
     preLoad();
 
     } 
     } 

//end hiding from older browsers -->
}

function newCertPopup(file,window) {
			msgWindow=open(file,window,'resizable=no,width=329,height=272');
			if (msgWindow.opener == null) msgWindow.opener = self;
		}
function newFullPopup(file,window) {
			msgWindow=open(file,window,'resizable=yes,width=800,height=600, scrollbars=1');
			if (msgWindow.opener == null) msgWindow.opener = self;
		}
