<!-- 

         if (document.images) {
        
				welcomeon = new Image();
				welcomeon.src = "../images/buttonsNew/welcome2.jpg";			// For fredericks menu active
				buyonlineon = new Image();
				buyonlineon.src = "../images/buttonsNew/buyonline2.jpg";
				pastrieson = new Image();
				pastrieson.src = "../images/buttonsNew/pastries2.jpg";
				cakeson = new Image();
				cakeson.src = "../images/buttonsNew/cakes2.jpg";
				weddingson = new Image();
				weddingson.src = "../images/buttonsNew/weddings2.jpg";
				seasonalon = new Image();
				seasonalon.src = "../images/buttonsNew/seasonal2.jpg";
				informationon = new Image();
				informationon.src = "../images/buttonsNew/information2.jpg";
				historyon = new Image();
				historyon.src = "../images/buttonsNew/history2.jpg";
				corporateon = new Image();
				corporateon.src = "../images/buttonsNew/corporate2.jpg";

				welcomeoff = new Image();
				welcomeoff.src = "../images/buttonsNew/welcome1.jpg";			// For fredericks menu inactive
				buyonlineoff = new Image();
				buyonlineoff.src = "../images/buttonsNew/buyonline1.jpg";
				pastriesoff = new Image();
				pastriesoff.src = "../images/buttonsNew/pastries1.jpg";
				cakesoff = new Image();
				cakesoff.src = "../images/buttonsNew/cakes1.jpg";
				weddingsoff = new Image();
				weddingsoff.src = "../images/buttonsNew/weddings1.jpg";
				seasonaloff = new Image();
				seasonaloff.src = "../images/buttonsNew/seasonal1.jpg";
				informationoff = new Image();
				informationoff.src = "../images/buttonsNew/information1.jpg";
				historyoff = new Image();
				historyoff.src = "../images/buttonsNew/history1.jpg";
				corporateoff = new Image();
				corporateoff.src = "../images/buttonsNew/corporate1.jpg";

        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// Display Time
 function makeArray(len) { 
 for (var i = 0; i < len; i++) { 
 this[i] = null } 
 this.length = len } 

 var 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" 

 var monthnames = new makeArray(12) 
 monthnames[0] = "January" 
 monthnames[1] = "February" 
 monthnames[2] = "March" 
 monthnames[3] = "April" 
 monthnames[4] = "May" 
 monthnames[5] = "June" 
 monthnames[6] = "July" 
 monthnames[7] = "August" 
 monthnames[8] = "September" 
 monthnames[9] = "October" 
 monthnames[10] = "November" 
 monthnames[11] = "December" 

 var now = new Date() 
 var day = now.getDay() 
 var month = now.getMonth() 
 var year = now.getYear() 
 var date = now.getDate() 
 var hour=now.getHours() 
 var minutes=now.getMinutes() 

 function writeDate() {
   if (year < 2000)
	year = year + 1900;
  { document.write("" + daynames[day] + ", " + monthnames[month] + " " + date + ", " + year +"  "      +"") } 
 }

  function print_window(url) {
  mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=647,height=450');
  }
// Stop hiding from old browsers -->
