/*

var imagsubon = new Array();
var imagsuboff = new Array();


imagsubon['news_dins'] = new Image(); imagsubon['news_dins'].src = '../img/menu/news2_on.jpg';
imagsuboff['news_dins'] = new Image(); imagsuboff['news_dins'].src = '../img/menu/news2_off.jpg';

imagsubon['events_dins'] = new Image(); imagsubon['events_dins'].src = '../img/menu/events_on.jpg';
imagsuboff['events_dins'] = new Image(); imagsuboff['events_dins'].src = '../img/menu/events_off.jpg';


function activar_sub(imgobj) {
	imgobj.src=imagsubon[imgobj.id].src;
}	

function desactivar_sub(imgobj) {
	if(imgobj.id != subseccioactual ){
		imgobj.src= imagsuboff[imgobj.id].src;	
	}
}

*/

function foto_orig(img)
{
	Imatgegran=window.open("imatge.php?src="+img,"Zoom","scrollbars=no,menubar=no,toolbar=no,resizable=no,status=no,directories=no,location=no,width=10,height=10");

} 

function obrir_noticia(num,fotografia,nn)
{

	for(i=1;i<=nn;i++)
	{
		document.getElementById('noticia_'+i).style.display='none';
	
	}

	document.getElementById('imatge_dreta').src="imatges/defecte.png"	

	if(document.getElementById('noticia_'+num).style.display=='block')
	{
		document.getElementById('noticia_'+num).style.display='none';
		document.getElementById('imatge_dreta').src="imatges/defecte.png"
	}
	else
	{
		document.getElementById('noticia_'+num).style.display='block';
		document.getElementById('imatge_dreta').src=""+fotografia+""
	}

}