<!-- 
var path = 'http://www.jeffreysdomain.com/siteimages/random_images/site/'; 
var i, numImages = 11; 

function randomChange() { 
   var cell = document.getElementById('td1'); 
   var randomIndex = Math.floor(Math.random() * numImages)+1; 
   cell.style.backgroundImage = 'url(' + String(path + 'random' + randomIndex + '.jpg') + ')'; 
} 
window.onload = randomChange; 
// -->