setInterval('reloadImage()', 5000);  // 5 seconds

function reloadImage()
{
img = document.getElementById('theimage');
img.src = 'http://www.hulseytrustystudios.com/images/fad/small/122006/rotate.php?' + Math.random();
}