                                       <!--Date Script-->

                                          
function todaysDate() {
                                          
var today = new Date();
var dayname= today.getDay();
var month = today.getMonth();
var day = today.getDate();
                                          
M = new Array
("January","February","March","April","May","June","July","August","September","October","November","December");
N = new Array
("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
                                          
document.write("<font face=\"times,times\">");
document.write(N[dayname] + " " + " " +  M[month] + " " + day + ", " + 2012);
document.write("</font>");
}
                                        


<!--mouseover color change-->

function doColor (item,color)  {
item.style.color = color;
}

function undoColor (item,color)  {
item.style.color = color;
}



