﻿
function Getmessage() {

now = new Date()
if (now.getDay() == 5)
document.write("It’s fruity Friday; we’ll be wallowing in mangoes, lemons and wild strawberries!")

if (now.getDay() == 6)
document.write("On Saturdays we have fun outdoors, dreaming up new flavours!")

if (now.getDay() == 0)
document.write("Ahh...Sundays!")

if (now.getDay() == 1)
document.write("Ease into the week gently... try butterscotch crunch with your Monday lunch!")

if (now.getDay() == 2)
document.write("It’s chocolate Tuesday; Jude’s favourite day!")

if (now.getDay() == 3)
document.write("Wonderful Wednesdays; when we stir up our seasonal specials!")

if (now.getDay() == 4)
document.write("Thursday is for making vanilla, vanilla...and more vanilla!")

}


function Showdate() {

  var today = new Date()
  var month = today.getMonth()+1
  var year = today.getYear()
  var day = today.getDate()
  if(day<10) day = "0" + day
  if(month<10) month= "0" + month 
  if(year<1000) year+=1900
     
  document.write(day + "/" + month +
                 "/" + (year+"").substring(2,4))
  }