// JavaScript Document
function noticiaBanner (image, title, text) {
	this.image = image;
	this.title = title;
	this.text = text;
}

function showNews (num) {
	var curNews = eval ("noticia" + num);	
	document.getElementById("banImg").src = curNews.image;
	document.getElementById("bannerDetailTitle").innerHTML = curNews.title;
	document.getElementById("bannerDetailText").innerHTML = curNews.text;	
}

function iniBanner () {	
	showNews(1);
}
