function pampalluga(nom){
//alert(document.getElementById(nom).className);
	if(document.getElementById(nom).className=='on')
		document.getElementById(nom).className='off';
	else
		document.getElementById(nom).className='on';
	
	setTimeout("pampalluga('"+nom+"')",1000);
}

function menu(capa){

	for(i=1;i<4;i++)
		if(capa!="opcio"+i)
			document.getElementById("opcio"+i).style.visibility="hidden"
	
	
	if(document.getElementById(capa).style.visibility=="visible")
		document.getElementById(capa).style.visibility="hidden"
	else
		document.getElementById(capa).style.visibility="visible"
}

function tdcolor(td){
	document.getElementById('tddades').style.background='#ffffff';
	document.getElementById('tdexpo').style.background='#ffffff';
	document.getElementById('tdactivitats').style.background='#ffffff';
	
	document.getElementById(td).style.background='#cccccc';
}

function pujar(capa){
	if(parseInt(frames['framefotos'].document.getElementById(capa).style.top)<parseInt(frames['framefotos'].document.getElementById(capa).offsetHeight))
		frames['framefotos'].document.getElementById(capa).style.top=parseInt(frames['framefotos'].document.getElementById(capa).style.top)-25;
}

function baixar(capa){
	if(parseInt(frames['framefotos'].document.getElementById(capa).style.top)<0)
		frames['framefotos'].document.getElementById(capa).style.top=parseInt(frames['framefotos'].document.getElementById(capa).style.top)+25;
}

function esquerra(capa){
	if(parseInt(document.getElementById(capa).style.left)<parseInt(document.getElementById(capa).offsetWidth))
		document.getElementById(capa).style.left=parseInt(document.getElementById(capa).style.left)-25;
}

function dreta(capa){
	if(parseInt(document.getElementById(capa).style.left)<0)
		document.getElementById(capa).style.left=parseInt(document.getElementById(capa).style.left)+25;
}

function fotosgran(nom){
	window.open('http://www.transartesans.com/img/galeria/gran/'+eval(nom+'.src').substr(48,18));
}

function canvifoto(foto){
	document.getElementById('fotogran').src=foto;
}

function folder(capa){

	vars=document.getElementsByTagName('ul');

	for(i=0;i<vars.length;i++){
		if(vars[i].id.substr(0,1)=='m'){
			if(vars[i].id!='m'+capa){
				document.getElementById(vars[i].id).style.display='none';
			}
		}
	}

	if(document.getElementById('m'+capa).style.display=="none"){
		document.getElementById('m'+capa).style.display="block";
	}else{
		document.getElementById('m'+capa).style.display="none";
	}
}

function folder2(capa){

	vars=document.getElementsByTagName('ul');

	for(i=0;i<vars.length;i++){
		if(vars[i].id.substr(0,4)=='subm'){
			if(vars[i].id!='subm'+capa){
				document.getElementById(vars[i].id).style.display='none';
			}
		}
	}

	if(document.getElementById('subm'+capa).style.display=="none"){
		document.getElementById('subm'+capa).style.display="block";
	}else{
		document.getElementById('subm'+capa).style.display="none";
	}
}

