//////////////////////////////////////////////////////////

function MakeArray(n)
        {
        this.length = n
        return this
        }

monthNames = new MakeArray(12)
monthNames[1] = "Jan."
monthNames[2] = "Feb."
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "Sept."
monthNames[10] = "Oct."
monthNames[11] = "Nov."
monthNames[12] = "Dec."

dayNames = new MakeArray(7)
dayNames[0] = "Sunday"
dayNames[1] = "Monday"
dayNames[2] = "Tuesday"
dayNames[3] = "Wednesday"
dayNames[4] = "Thursday"
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 + ", " + theMonth + " " + theDate
        }

//////////////////////////////////////////////////////////////////////

	if  (document.images) {
		homeWhite = new Image
		homeRed = new Image

		homeWhite.src = 'images/2000/home1.gif'
		homeRed.src = 'images/2000/home2.gif'

		aboutWhite = new Image
		aboutRed = new Image

		aboutWhite.src = 'images/2000/about1.gif'
		aboutRed.src = 'images/2000/about2.gif'

		gethereWhite = new Image
		gethereRed = new Image

		gethereWhite.src = 'images/2000/gethere1.gif'
		gethereRed.src = 'images/2000/gethere2.gif'

		restWhite = new Image
		restRed = new Image

		restWhite.src = 'images/2000/restaurants1.gif'
		restRed.src = 'images/2000/restaurants2.gif'

		shopWhite = new Image
		shopRed = new Image

		shopWhite.src = 'images/2000/shopping1.gif'
		shopRed.src = 'images/2000/shopping2.gif'

		sangenWhite = new Image
		sangenRed = new Image

		sangenWhite.src = 'images/2000/sangenarro1.gif'
		sangenRed.src = 'images/2000/sangenarro2.gif'
		
		couponWhite = new Image
		couponRed = new Image

		couponWhite.src = 'images/2000/coupons1.gif'
		couponRed.src = 'images/2000/coupons2.gif'
		
		limoWhite = new Image
		limoRed = new Image

		limoWhite.src = 'images/2000/limo1.gif'
		limoRed.src = 'images/2000/limo2.gif'
		
		panoWhite = new Image
		panoRed = new Image

		panoWhite.src = 'images/2000/360s1.gif'
		panoRed.src = 'images/2000/360s2.gif'
		
		emailWhite = new Image
		emailRed = new Image

		emailWhite.src = 'images/2000/email1.gif'
		emailRed.src = 'images/2000/email2.gif'
	}
	else {
		buttonWhite = ""
		buttonRed = ""
		document.button = ""
	}
///////////////////////////////////////////////////////////////