/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Anonymous | http://musikimiz.googlepages.comLicensed under: Creative Commons License
 */

var LWimages = [  // add path to directory if necessary
  "slideshow/slides/1.png",
  "slideshow/slides/3.png",
  "slideshow/slides/1.png",
  "slideshow/slides/3.png"  // NOTE: no comma after last entry
];
function TODimage() {
  var now = new Date();
  hr = now.getHours();                               // alert(hr);  // for testing
  var LW = 0;                                               // midnight to  5:59 am
  if ((hr >= 6) && (hr < 12)) { DJ = 1; }   // 6am to 11:59am
  if ((hr >= 12) && (hr < 18)) { DJ = 2; } // Noon to 5:59 pm
  if ((hr >= 18) && (hr < 24)) { DJ = 3; } // 6pm to midnight
  document.getElementById('myimage').src = LWimages[LW];
  document.getElementById('myimage').alt = LWimages[LW];
} 

