	
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes();
var day = now.getDay();
var month = now.getMonth();
var date = now.getDate();
var year = now.getYear();

var thedays = new Array();
thedays[0]="Sunday";
thedays[1]="Monday";
thedays[2]="Tuesday";
thedays[3]="Wednesday";
thedays[4]="Thursday";
thedays[5]="Friday";
thedays[6]="Saturday";

var themonths = new Array();
themonths[0]="January";
themonths[1]="February";
themonths[2]="March";
themonths[3]="April";
themonths[4]="May";
themonths[5]="June";
themonths[6]="July";
themonths[7]="August";
themonths[8]="September";
themonths[9]="October";
themonths[10]="November";
themonths[11]="December";

<!--

        if (document.images) {           // Active Images
            homeON = new Image();      
            homeON.src = "/images/nav_homeon.jpg"; 
            aboutON = new Image();      
            aboutON.src = "/images/nav_abouton.jpg"; 
            escrowON = new Image();      
            escrowON.src = "/images/nav_escrowon.jpg"; 
            faqON = new Image();      
            faqON.src = "/images/nav_faqon.jpg"; 
            contactON = new Image();      
            contactON.src = "/images/nav_contacton.jpg"; 
			
            homeOFF = new Image();      
            homeOFF.src = "/images/nav_home.jpg"; 
            aboutOFF = new Image();      
            aboutOFF.src = "/images/nav_about.jpg"; 
            escrowOFF = new Image();      
            escrowOFF.src = "/images/nav_escrow.jpg"; 
            faqOFF = new Image();      
            faqOFF.src = "/images/nav_faq.jpg"; 
            contactOFF = new Image();      
            contactOFF.src = "/images/nav_contact.jpg"; 
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "ON.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "OFF.src");
        }
}

// -->

<!-- Begin redirect timer
redirTime = "6000";
redirURL = "about.html";
function redirTimer() { self.setTimeout("self.location.href = redirURL;",redirTime); }
//  End -->
