/////////////////////////////////////////////////////////////////////////////////////////////////
function dailyImage() {
   myDate = new Date();
   today = myDate.getDay();
   oDiv  = document.getElementById('bodyContent');
   if (today==1) {
      imgSrc = 'graphics/flipya.jpg';
   }
   else if (today==2) {
      imgSrc = 'graphics/mypair.jpg';
   }
   else if (today==3) {
      imgSrc = 'graphics/cantsee.jpg';
   }
   else if (today==4) {
      imgSrc = 'graphics/cboytub.jpg';
   }
   else if (today==5) {
      imgSrc = 'graphics/unsaddle.jpg';
   }
   else if (today==6) {
      imgSrc = 'graphics/gudhorse.jpg';
   }
   else {
      imgSrc = 'graphics/realluck.jpg';
   }
   oImg = document.createElement('img');
   oImg.id = 'imgOfDay';
   oImg.src = imgSrc;
   oImg.alt = 'Image of the Day';
   oImg.style.zoom = .6;
   oDiv.appendChild(oImg);
}
/////////////////////////////////////////////////////////////////////////////////////////////////
function addFavorites() {
   window.external.AddFavorite('http://www.lucky4jays.com','Lucky 4 Jays Paints and Quarters');
}

