/* DESTACAT WEB OBJECTIU PASTORETS */
foto = new Array();
txt_alt_foto = new Array();
entradeta = new Array();
txt_principal = new Array();
enllas = new Array();

///////////////////////////////////////////////////////////////////////////
//// CONTINGUT DESTACAT **NORMAL** ////////////////////////////////////////
	foto[0] = '/objectiupastorets/img/im_destacat.jpg';
	txt_alt_foto[0] = 'Objectiu Pastorets'
	entradeta[0] = 'La gran gala';
	txt_principal[0] = 'Felicitats a tothom!';
	enllas[0] = 'http://www.tv3.cat/pprogrames/pastorets/pasSeccio.jsp'
///////////////////////////////////////////////////////////////////////////
//// CONTINGUT DESTACAT **CERCADOR** //////////////////////////////////////
	foto[1] = '/objectiupastorets/img/destacat_2.jpg';
	txt_alt_foto[1] = 'Objectiu Pastorets'
	entradeta[1] = 'La gran gala';
	txt_principal[1] = 'Felicitats a tothom!';
	enllas[1] = 'http://www.tv3.cat/pprogrames/pastorets/pasSeccio.jsp'
///////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////

/* Destacat */
function OPdestacat(id){
	var str = '';
	str += '<img src="' + foto[id] + '" alt="' + txt_alt_foto[id] + '" width="122" height="104" title="' + txt_alt_foto[id] + '" />';
	str += '<p class="marro">' + entradeta[id] + '</p>';
	str += '<h2><a href="' + enllas[id] + '" title="' + txt_principal[id] + '">' + txt_principal[id] + '</a></h2>';
	document.getElementById('bannerCanviant').innerHTML = str;
}
