function ImgRand() {
	var numero_a1 = Math.floor(Math.random()*7);
	var numero_a2 = Math.floor(Math.random()*7);
	var numero_s1 = Math.floor(Math.random()*16);
	var numero_s2 = Math.floor(Math.random()*7);
	var img_a1 = "grafica/foto_a1_" + numero_a1 + ".jpg";
	var img_a2 = "grafica/foto_a2_" + numero_a2 + ".jpg";
	var img_s1 = "grafica/foto_s1_" + numero_s1 + ".jpg";
	var img_s2 = "grafica/foto_s2_" + numero_s2 + ".jpg";
	
	document.getElementById("td_img_a1").style.backgroundImage="url('" + img_a1 + "')";
	document.getElementById("td_img_a2").style.backgroundImage="url('" + img_a2 + "')";
	document.getElementById("td_img_s1").style.backgroundImage="url('" + img_s1 + "')";
	document.getElementById("td_img_s2").style.backgroundImage="url('" + img_s2 + "')";
}
