var MAX_NOTICIAS = 5;

var	TEXTO_01 = "SEIS / DRACE culmina la fachada de G.R.C. del Hotel Ritz Carlton en Irlanda",
	TEXTO_02 = "SEIS's official Website is born",
	TEXTO_03 = "Reconstruction of Terminal T-4 at Barajas Airport in Madrid.",
	TEXTO_04 = "Inauguration of noise barriers on the Gran Via in Barcelona",
	TEXTO_05 = "Santander campaign completed";

var FECHA_01 = "11 de Julio, 2007"
	FECHA_02 = "July 11, 2007",
	FECHA_03 = "March 30, 2007",
	FECHA_04 = "March 17, 2007",
	FECHA_05 = "June 10, 2007";
	
var EXT_FOTO_01 = ".jpg",
	EXT_FOTO_02 = ".gif",
	EXT_FOTO_03 = ".jpg",
	EXT_FOTO_04 = ".jpg",
	EXT_FOTO_05 = ".gif";

function get_numero(d,h){
    pos = h - d;
    n = Math.random() * pos;
    n = Math.floor(n);
    return parseInt(d) + n; 
}

function selecciona_noticia(){
	var noticia_no =  get_numero(1,MAX_NOTICIAS);
	document.getElementById('fecha').innerHTML = eval('FECHA_0' + noticia_no);
	document.getElementById('texto_noticia').innerHTML = eval('TEXTO_0' + noticia_no);	
	document.getElementById('enlace_noticia').innerHTML = '<a href="prensa_0' + noticia_no + '.html" target="_blank">&gt;&gt; read more</a>' ;
	document.getElementById('foto_noticia').src = "../img/foto_noticia_0" + noticia_no + eval('EXT_FOTO_0' + noticia_no) ;
}