function preload_images()
{

  image1on = new Image();
  image1on.src = "/images/nav_on-01-01.gif";

  image2on = new Image();
  image2on.src = "/images/nav_on-02-01.gif";

  image3on = new Image();
  image3on.src = "/images/nav_on-03-01.gif";

  image4on = new Image();
  image4on.src = "/images/nav_on-04-01.gif";

  image5on = new Image();
  image5on.src = "/images/nav_on-05-01.gif";

  image6on = new Image();
  image6on.src = "/images/nav_on-06-01.gif";

  image7on = new Image();
  image7on.src = "/images/nav_on-07-01.gif";

  image8on = new Image();
  image8on.src = "/images/nav_on-08-01.gif";

  image9on = new Image();
  image9on.src = "/images/nav_on-09-01.gif";

  image10on = new Image();
  image10on.src = "/images/nav_on-10-01.gif";

  image1off = new Image();
  image1off.src = "/images/nav_off-01-01.gif";

  image2off = new Image();
  image2off.src = "/images/nav_off-02-01.gif";

  image3off = new Image();
  image3off.src = "/images/nav_off-03-01.gif";

  image4off = new Image();
  image4off.src = "/images/nav_off-04-01.gif";

  image5off = new Image();
  image5off.src = "/images/nav_off-05-01.gif";

  image6off = new Image();
  image6off.src = "/images/nav_off-06-01.gif";

  image7off = new Image();
  image7off.src = "/images/nav_off-07-01.gif";

  image8off = new Image();
  image8off.src = "/images/nav_off-08-01.gif";

  image9off = new Image();
  image9off.src = "/images/nav_off-09-01.gif";

  image10off = new Image();
  image10off.src = "/images/nav_off-10-01.gif";
}

function turnOn(imagename) {
  if (document.images) {
    document[imagename].src = eval(imagename + "on.src");
  }
}

function turnOff(imagename) {
  if (document.images) {
    document[imagename].src = eval(imagename + "off.src");
  }
}

function vertical_menu()
{
  document.write("<img src=\"/images/life_giving_spring_icon_button.jpg\" border=\"0\" alt=\"[Life Giving Spring Icon Button]\">");
  document.write("<br><br>");
  document.write("<table width=\"114\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">");
  document.write("<tr><td><a href=\"/\" onMouseOver=\"turnOn('image1')\" onMouseOut=\"turnOff('image1')\"><img src = \"/images/nav_off-01-01.gif\" name=\"image1\" border=\"0\" width=\"114\" height=\"36\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/about/\" onMouseOver=\"turnOn('image2')\" onMouseOut=\"turnOff('image2')\"><img src = \"/images/nav_off-02-01.gif\" name=\"image2\" border=\"0\" width=\"114\" height=\"25\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/shop/\" onMouseOver=\"turnOn('image3')\" onMouseOut=\"turnOff('image3')\"><img src = \"/images/nav_off-03-01.gif\" name=\"image3\" border=\"0\" width=\"114\" height=\"25\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/photo/\" onMouseOver=\"turnOn('image5')\" onMouseOut=\"turnOff('image5')\"><img src = \"/images/nav_off-05-01.gif\" name=\"image5\" border=\"0\" width=\"114\" height=\"25\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/news/\" onMouseOver=\"turnOn('image6')\" onMouseOut=\"turnOff('image6')\"><img src = \"/images/nav_off-06-01.gif\" name=\"image6\" border=\"0\" width=\"114\" height=\"25\" align=\"bottom\"></a></td></tr>");
  document.write("<tr><td><a href=\"/about/contact_us.htm\" onMouseOver=\"turnOn('image10')\" onMouseOut=\"turnOff('image10')\"><img src = \"/images/nav_off-10-01.gif\" name=\"image10\" border=\"0\" width=\"114\" height=\"36\" align=\"bottom\"></a></td></tr>");
  document.write("</table><br>");
//
  document.write("<table width=\"135\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td style='line-height: 1.3;'>");
  document.write("<font size=\"2\" face=\"arial, trebuchet ms, helvetica\">");
  document.write("<b>");
  document.write("Life-Giving Spring<br>");
  document.write("800 N. Glendale Ave.<br>");
  document.write("Glendale, CA 91206<br>");
  document.write("(818) 551-0544<br>");
  document.write("<br>");
  document.write("Hours:<br>");
  document.write("Tue - Fri: 9 am - 6 pm<br>");
  document.write("Sat: 9 am - 3 pm<br>");
  document.write("Sun - Mon, closed<br>");
  document.write("</b>");
  document.write("</font>");
  document.write("</td></tr></table>");
}

function show_date()
{
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

// Get today's current date.
var now = new Date();

// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');

// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}

// Join it all together
// today =  days[now.getDay()] + ", " +
//               months[now.getMonth()] + " " +
//                date + ", " +
//                 (fourdigits(now.getYear())) ;
// 
day_of_week = days[now.getDay()]
today =  months[now.getMonth()] + " " +
               date + ", " +
                (fourdigits(now.getYear())) ;

// Print out the data.
document.write("<div align=right><font size=2 face=arial><b>"+day_of_week+", "+today+"</b></font></div>");
}

