<!--
function write_greetings()
{
now = new Date();

var CurHour = now.getHours();
var CurMinute = now.getMinutes();
var Greetings;

if (CurHour >= 0 && CurHour < 12) {
	Greetings = " Morning, ";
} else if (CurHour >=12 && CurHour < 18) {
	Greetings = " Afternoon, ";
} else if (CurHour >= 18 && CurHour <= 24) {
	Greetings = " Evening, ";
}

now = null;  // for JavaScript's automatic garbage collection
document.write(Greetings);
}

var timerID=setTimeout("",1000);
function linkDesc(linkName)
{
clearTimeout(timerID);
window.status=linkName;
timerID=setTimeout("window.status=''",2500);
}

sm_homeon = new Image();
sm_homeon.src = "images/grid_home_on.gif";
sm_homeoff = new Image();
sm_homeoff.src = "images/grid_home_off.gif";

sm_djon = new Image();
sm_djon.src = "images/grid_dj_on.gif";
sm_djoff = new Image();
sm_djoff.src = "images/grid_dj_off.gif";

sm_livebandson = new Image();
sm_livebandson.src = "images/grid_livebands_on.gif";
sm_livebandsoff = new Image();
sm_livebandsoff.src = "images/grid_livebands_off.gif";

sm_sportson = new Image();
sm_sportson.src = "images/grid_sports_on.gif";
sm_sportsoff = new Image();
sm_sportsoff.src = "images/grid_sports_off.gif";

sm_socceron = new Image();
sm_socceron.src = "images/grid_soccer_on.gif";
sm_socceroff = new Image();
sm_socceroff.src = "images/grid_soccer_off.gif";

sm_dartson = new Image();
sm_dartson.src = "images/grid_darts_on.gif";
sm_dartsoff = new Image();
sm_dartsoff.src = "images/grid_darts_off.gif";

sm_othereventson = new Image();
sm_othereventson.src = "images/grid_otherevents_on.gif";
sm_othereventsoff = new Image();
sm_othereventsoff.src = "images/grid_otherevents_off.gif";

sm_galleryon = new Image();
sm_galleryon.src = "images/grid_gallery_on.gif";
sm_galleryoff = new Image();
sm_galleryoff.src = "images/grid_gallery_off.gif";

sm_aboutuson = new Image();
sm_aboutuson.src = "images/grid_aboutus_on.gif";
sm_aboutusoff = new Image();
sm_aboutusoff.src = "images/grid_aboutus_off.gif";

sm_emailon = new Image();
sm_emailon.src = "images/grid_email_on.gif";
sm_emailoff = new Image();
sm_emailoff.src = "images/grid_email_off.gif";

function rollon(imgName) {
        imgOn = eval(imgName + "on.src");
        document[imgName].src = imgOn;
}

function rolloff(imgName) {
        document[imgName].src = eval(imgName + "off.src");
}

// -->
