function rumors() {
	//Math.round(Math.random() * (max - min) + min)
	num = Math.round(Math.random() * (13 - 1) + 1)
	file = 'http://www.rumors-studio.com/img/rumors'+num+'.png';
	document.getElementById('rumors').src = file;
	window.setTimeout("rumors();",8000);
}

function init() {
	window.setTimeout("rumors();",8000);
}