function switchEG() {
	var rand=Math.floor(Math.random()*3)+1;
	document.getElementById('echog').setAttribute('src','/images/echogenesis'+rand+'.jpg');
};
setTimeout('switchEG()',Math.random()*20000+20000);
