/*
 DHTML Menu version 3.3.19
 Written by Andy Woolley
 Copyright 2002 (c) Milonic Solutions. All Rights Reserved.
 Plase vist http://www.milonic.co.uk/menu or e-mail menu3@milonic.com
 You may use this menu on your web site free of charge as long as you place prominent links to http://www.milonic.co.uk/menu and
 your inform us of your intentions with your URL AND ALL copyright notices remain in place in all files including your home page
 Comercial support contracts are available on request if you cannot comply with the above rules.
 This script featured on Dynamic Drive (http://www.dynamicdrive.com)
 */


var now = new Date();
var year = now.getYear();
var day = now.getDate();
var bigHand= now.getMinutes();
(bigHand<10)? bigHand="0"+bigHand:bigHand=bigHand;
var ampm=""
var theHour
var theTime = now.getHours();
if (theTime<1) theHour=12;
else if (theTime>12) theHour=(theTime-12);
else theHour=theTime;
(theTime>=12)? ampm="pm":ampm="am";
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var monthNames = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var theMonth = monthNames[now.getMonth()];
var Today = dayNames[now.getDay()];
var theYear 
if (year >= 2000) theYear = year;
else theYear = (1900 + year)
var ordinal="th"
if (day==1 || day==21 || day==31) ordinal="st";
if (day==2 || day==22) ordinal="nd";
if (day==3 || day==23) ordinal="rd";
var whichDay = day+ordinal;
