// Time of Day Image Script
// copyright Stephen Chapman, 20th Jan 2005
// you may copy this script but please keep the copyright notice as well
function timeOfDayImage() {
  var now = new Date;
  var timeNow = now.getHours();
  var imgpath = null; 
  var alttext = '';
if (timeNow < 4 || timeNow > 20) {
  imgpath = 'http://profile.ak.fbcdn.net/v230/1101/47/n698672439_827.jpg'; alttext = 'you should be sleeping';
  } else if (timeNow < 7) {
  imgpath = 'http://profile.ak.fbcdn.net/v230/1101/47/n698672439_827.jpg'; alttext = 'ralph phillips';
  } else if (timeNow < 9) {
  imgpath = 'http://www.ralphphillips.com/cocc/img/ccam.jpg'; alttext = 'good morning - Ralph\'s office cam';
  } else if (timeNow < 11) {
  imgpath = 'http://www.ralphphillips.com/cocc/img/ccam.jpg'; alttext = 'good morning - Ralph\'s office cam';
  } else if (timeNow < 13) {
  imgpath = 'http://www.ralphphillips.com/cocc/img/ccam.jpg'; alttext = 'good afternoon - Ralph\'s office cam';
  } else if (timeNow < 16) {
  imgpath = 'http://www.ralphphillips.com/cocc/img/ccam.jpg'; alttext = 'good afternoon - Ralph\'s office cam';
  } else if (timeNow < 20) {
  imgpath = 'http://www.ralphphillips.com/cocc/img/ccam.jpg'; alttext = 'good afternoon - Ralph\'s office cam';
  } else {
  imgpath = 'http://profile.ak.fbcdn.net/v230/1101/47/n698672439_827.jpg'; alttext = 'visit my SU page';
  }
  document.write('<img src="'+imgpath+'" width="150" alt="'+alttext+'" title="'+alttext+'" />');
  }