function switchCombat() {
	var rand=Math.round(Math.random()*4)+1;
	document.getElementById('combats').setAttribute('src','/images/combatheaven'+rand+'.gif');
	setTimeout('switchCombat()',20000);
};
setTimeout('switchCombat()',20000);