   <!--

   function makeArray(n){
     this.length = n;
     for (i=1;i<=n;i++){
       this[i]=0;
     }
     return this;
   }

   function displayDate() {
	   var this_month = new makeArray(12);
       this_month[0]  = "January";
       this_month[1]  = "February";
       this_month[2]  = "March";
       this_month[3]  = "April";
       this_month[4]  = "May";
       this_month[5]  = "June";
       this_month[6]  = "July";
       this_month[7]  = "August";
       this_month[8]  = "September";
       this_month[9]  = "October";
       this_month[10] = "November";
       this_month[11] = "December";
	   var today = new Date();
	   var day   = today.getDate();
	   var month = today.getMonth();
	   var year  = today.getYear();
	   if (year< 1900) {
		   year += 1900;
	   }
     return(this_month[month]+" "+day+", "+year);
   }
   // -->


  <!--

  if (document.images) {
    homeon = new Image();
    homeon.src = "nav/home2.jpg";

    rxon = new Image();
    rxon.src = "nav/rx2.jpg";

    serviceson = new Image();
    serviceson.src = "nav/services2.jpg";

    onepriceon = new Image();
    onepriceon.src = "nav/oneprice2.jpg";

    medicineon = new Image();
    medicineon.src = "nav/medicine2.jpg";

    epon = new Image();
    epon.src = "nav/ep2.jpg";

    soon = new Image();
    soon.src = "nav/so2.jpg";

    privacyon = new Image();
    privacyon.src = "nav/privacy2.jpg";

    npon = new Image();
    npon.src = "nav/np2.jpg";

    ccon = new Image();
    ccon.src = "nav/cc2.jpg";

    directionson = new Image();
    directionson.src = "nav/directions2.jpg";

    gnpon = new Image();
    gnpon.src = "nav/gnp2.jpg";	

    contacton = new Image();
    contacton.src = "nav/contact2.jpg";	



    homeoff = new Image();
    homeoff.src = "nav/home1.jpg";

    rxoff = new Image();
    rxoff.src = "nav/rx1.jpg";

    servicesoff = new Image();
    servicesoff.src = "nav/services1.jpg";

    onepriceoff = new Image();
    onepriceoff.src = "nav/oneprice1.jpg";

    medicineoff = new Image();
    medicineoff.src = "nav/medicine1.jpg";

    epoff = new Image();
    epoff.src = "nav/ep1.jpg";

    sooff = new Image();
    sooff.src = "nav/so1.jpg";

    privacyoff = new Image();
    privacyoff.src = "nav/privacy1.jpg";

    npoff = new Image();
    npoff.src = "nav/np1.jpg";

    ccoff = new Image();
    ccoff.src = "nav/cc1.jpg";

    directionsoff = new Image();
    directionsoff.src = "nav/directions1.jpg";

    gnpoff = new Image();
    gnpoff.src = "nav/gnp1.jpg";	

    contactoff = new Image();
    contactoff.src = "nav/contact1.jpg";	
 
  }

  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");
    }
  }

  // -->