﻿var href = [ 'Bacardi.html', 'ChilpotlePuree.html', 'TenMinuteCranberrySauce.html', 'Daiquiri.html', 'FennelSaute.html', 'GaramMasala.html', 'MaineShrimpBoiled.html', 'MartiniClassic.html', 'MartiniDry.html', 'MinceTurnovers.html', 'OrangeSalad.html', 'SorPShortcake.html', 'PeguClub.html', 'SaltedAlmonds.html', 'Sangria.html', 'Shortcake.html', 'Sidecar.html', 'SMCurryPowder.html', 'SorPShortcake.html', 'SurfRider.html' ]; var src = [ 'images/Bacardi.jpg', 'images/ChilpotlePuree.jpg', 'images/CranberrySauce.jpg', 'images/Daiquiri.jpg', 'images/FennelSaute.jpg', 'images/GaramMasala.jpg', 'images/MaineShrimp.jpg', 'images/MartiniClassic.jpg', 'images/MartiniDry.jpg', 'images/MinceTurnovers.jpg', 'images/OrangeSalad.jpg', 'images/PeachShortcake.jpg', 'images/PeguClub.jpg', 'images/SaltedAlmonds.jpg', 'images/Sangria.jpg', 'images/Shortcake.jpg', 'images/Sidecar.jpg', 'images/SMCurryPowder.jpg', 'images/StrawberryShortcake.jpg', 'images/SurfRider.jpg' ]; var title = [ 'Bacardi cocktail', 'chilpotle purée', 'cranberry sauce', 'Daiquiri cocktail', 'fennel sauté', 'garam masala', 'Maine shrimp', 'Martini (classic) cocktail', 'Martini (dry) cocktail', 'mince turnovers', 'orange salad dessert', 'peach shortcake', 'Pegu Club cocktail', 'salted almonds', 'sangría', 'shortcake', 'Sidecar cocktail', 'Sarojini Mudnani’s curry powder', 'strawberry shortcake', 'Surf Rider cocktail' ]; var width = [ '128', '128', '128', '128', '128', '128', '128', '88', '96', '128', '128', '128', '98', '128', '128', '128', '96', '128', '128', '128' ]; var height = [ '128', '128', '128', '128', '98', '128', '128', '128', '128', '128', '105', '128', '128', '128', '128', '128', '128', '128', '128', '128' ]; var hrefCt = href.length; function todays_photo() { var now = new Date(); var msCount = now.getTime(); var msPerDay = 24 * 60 * 60 * 1000; var dayCount = Math.floor(msCount / msPerDay); var index = (dayCount * 7919) % hrefCt; return index; } var index = todays_photo(); var todaysHref = href[index]; var todaysSrc = src[index]; var todaysTitle = title[index]; var todaysWidth = width[index]; var todaysHeight = height[index]; var div0 = document.createElement('div'); div0.setAttribute('class', 'photoOTD'); var a0 = document.createElement('a'); a0.setAttribute('href', todaysHref); div0.appendChild(a0); var img0 = document.createElement('img'); img0.setAttribute('src', todaysSrc); img0.setAttribute('alt', ''); img0.setAttribute('title', todaysTitle); img0.setAttribute('width', todaysWidth); img0.setAttribute('height', todaysHeight); a0.appendChild(img0); var body0 = document.getElementsByTagName('body').item(0); body0.appendChild(div0);