function todaysDate(){
  var now = new Date();

  var month = now.getMonth() + 1;
  if (month < 10) { document.write("0"); }
  document.write(month + "/");

  var day = now.getDate();
  if (day < 10) { document.write("0"); }
  document.write(day + "/");

  document.write(now.getFullYear());
} // todaysDate
