////////////////////////////////////////////////////////////
function MakeArray(n)
        {
        this.length = n
        return this
        }

monthNames = new MakeArray(12)
monthNames[1] = "january"
monthNames[2] = "february"
monthNames[3] = "march"
monthNames[4] = "april"
monthNames[5] = "may"
monthNames[6] = "june"
monthNames[7] = "july"
monthNames[8] = "august"
monthNames[9] = "september"
monthNames[10] = "october"
monthNames[11] = "november"
monthNames[12] = "december"

dayNames = new MakeArray(7)
dayNames[0] = "sunday"
dayNames[1] = "monday"
dayNames[2] = "tuesday"
dayNames[3] = "wed"
dayNames[4] = "thurs"
dayNames[5] = "friday"
dayNames[6] = "saturday"

function GetToday(TodayDate)
        {
        var theDay = dayNames[TodayDate.getDay()];
        var theDate = TodayDate.getDate();
        var theMonth = monthNames[TodayDate.getMonth() + 1];
        var theYear;
        if (TodayDate.getYear() < 90)
                {
                theYear = TodayDate.getYear() + 2000
                }
        else
                {
                theYear = TodayDate.getYear() + 1900
                }
        return theDay + " " + theDate + " " + theMonth
        }

////////////////////////////////////////////////////////////////////

	if  (document.images) {
		homeSmall = new Image
		homeBig = new Image

		homeSmall.src = 'images/buttons/home1.gif'
		homeBig.src = 'images/buttons/home2.gif'
		
		aboutSmall = new Image
		aboutBig = new Image

		aboutSmall.src = 'images/buttons/about1.gif'
		aboutBig.src = 'images/buttons/about2.gif'

		dineSmall = new Image
		dineBig = new Image

		dineSmall.src = 'images/buttons/dining1.gif'
		dineBig.src = 'images/buttons/dining2.gif'
		
		nightSmall = new Image
		nightBig = new Image

		nightSmall.src = 'images/buttons/nightlife1.gif'
		nightBig.src = 'images/buttons/nightlife2.gif'

		shopSmall = new Image
		shopBig = new Image

		shopSmall.src = 'images/buttons/shopping1.gif'
		shopBig.src = 'images/buttons/shopping2.gif'

		wildSmall = new Image
		wildBig = new Image

		wildSmall.src = 'images/buttons/wild1.gif'
		wildBig.src = 'images/buttons/wild2.gif'
		
		mapSmall = new Image
		mapBig = new Image

		mapSmall.src = 'images/buttons/map1.gif'
		mapBig.src = 'images/buttons/map2.gif'
		
		wallSmall = new Image
		wallBig = new Image

		wallSmall.src = 'images/buttons/wallpaper1.gif'
		wallBig.src = 'images/buttons/wallpaper2.gif'
		
		emailSmall = new Image
		emailBig = new Image

		emailSmall.src = 'images/buttons/email1.gif'
		emailBig.src = 'images/buttons/email2.gif'
	}
	else {
		buttonSmall = ""
		buttonBig = ""
		document.button = ""
	}
//////////////////////////////////////////////////////////////