doClock()
function doClock(){
today = new Date();
self.status = today.toString();
window.setTimeout( "doClock()", 1000 )
}

document.write('<STYLE TYPE="text/css">.imgTrans{ filter:revealTrans(duration=0.4,transition=12) }</STYLE>');
//document.write('<STYLE TYPE="text/css">.imgTrans{ filter:blendTrans(duration=0.4) }</STYLE>');

function StringTime(BrowserTime)
{var DayofWeek = new Array(7)
	DayofWeek[0] = "Sunday"
	DayofWeek[1] = "Monday"
	DayofWeek[2] = "Tuesday"
	DayofWeek[3] = "Wednesday"
	DayofWeek[4] = "Thursday"
	DayofWeek[5] = "Friday"
	DayofWeek[6] = "Saturday"
	var MonthofYear = new Array(12)
	MonthofYear[0] = "January"
	MonthofYear[1] = "February"
	MonthofYear[2] = "March"
	MonthofYear[3] = "April"
	MonthofYear[4] = "May"
	MonthofYear[5] = "June"
	MonthofYear[6] = "July"
	MonthofYear[7] = "August"
	MonthofYear[8] = "September"
	MonthofYear[9] = "October"
	MonthofYear[10] = "November"
	MonthofYear[11] = "December"
	return DayofWeek[BrowserTime.getDay()] + "&nbsp;&nbsp;<img src='images/nav_div.gif' width='3' height='14' align='absmiddle'>&nbsp;&nbsp;" + MonthofYear[BrowserTime.getMonth()] + " " + BrowserTime.getDate()
}

var onImages=new Array();
function Rollover(imgName, imgSrc)
{
	onImages[imgName] = new Image();
	onImages[imgName].src = imgSrc;
}

function turnOn(imgName){ 
	if(document.images[imgName].filters != null)
		document.images[imgName].filters[0].apply();
	document.images[imgName].offSrc = document.images[imgName].src;
	document.images[imgName].src    = onImages[imgName].src;
	if(document.images[imgName].filters != null)
		document.images[imgName].filters[0].play();
}

function turnOff(imgName){ 
	if(document.images[imgName].filters != null)
		document.images[imgName].filters[0].stop();
	document.images[imgName].src = document.images[imgName].offSrc;
}

//Specify name of participating images, plus paths to their onMouseover replacements:
Rollover("home",  "images/home-on.gif");
Rollover("greece", "images/greece-on.gif");
Rollover("domestic", "images/domestic-on.gif");
Rollover("international", "images/international-on.gif");
Rollover("quote", "images/quote-on.gif");
Rollover("info", "images/info-on.gif");
Rollover("about", "images/about-on.gif");
Rollover("sitemap", "images/site-on.gif");