function mouseOver()
{
document.getElementById("b1").src ="images/MIinbutton.jpg";

}
function mouseOut()
{
document.getElementById("b1").src ="images/MIOutbutton.jpg";

}

function mouseOver1()
{
document.getElementById("c1").src ="images/Coninbutton.jpg";
}
function mouseOut1()
{
document.getElementById("c1").src ="images/ConOutbutton.jpg";
}

function mouseOver2()
{
document.getElementById("d1").src ="images/Serinbutton.jpg";
}
function mouseOut2()
{
document.getElementById("d1").src ="images/SerOutbutton.jpg";
}

function mouseOver3()
{
document.getElementById("e1").src ="images/NewsMinbutton.jpg";
}
function mouseOut3()
{
document.getElementById("e1").src ="images/NewsMOutbutton.jpg";
}

function mouseOver4()
{
document.getElementById("f1").src ="images/Whoinbutton.jpg";
}
function mouseOut4()
{
document.getElementById("f1").src ="images/WhoOutbutton.jpg";
}

function mouseOver5()
{
document.getElementById("g1").src ="images/Whatinbutton.jpg";
}
function mouseOut5()
{
document.getElementById("g1").src ="images/WhatOutbutton.jpg";
}

function mouseOver6()
{
document.getElementById("h1").src ="images/Siteinbutton.jpg";
}
function mouseOut6()
{
document.getElementById("h1").src ="images/SiteOutbutton.jpg";
}

function mouseOver7()
{
document.getElementById("a1").src ="images/Homeinbutton.jpg";
}
function mouseOut7()
{
document.getElementById("a1").src ="images/HomeOutbutton.jpg";
}






function telltime(){
document.write("<div class='time'>")

var mydate=new Date()
var year=mydate.getYear()

if (year<2000)
year += (year < 1900) ? 1900 : 0
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("&nbsp;"+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+"&nbsp;")
document.write("</div>")
}