// JavaScript Document
		
	function mostrarFoto(foto) {
		document.getElementById('titolSeccio').style.display = 'none';
		document.getElementById('fotogran').src = '../img/' + foto + '.jpg';
		var positionX = 0;
		var positionY = 0;
		
		document.getElementById('fotogran').style.left = (positionX + 7) + "px";
		document.getElementById('fotogran').style.top = positionY + "px";
		document.getElementById('fotogran').style.display = 'block';
		var posicioFoto = parseInt(foto.substring(7,9), 10) - 1; //posicio de la foto
		var galeria = 'foto' + foto.substring(4,6);
		document.getElementById('titolFoto').innerHTML = eval(galeria)[posicioFoto];
	}

	function amagarFoto(){
		document.getElementById('fotogran').src = '';
		document.getElementById('fotogran').style.display = 'none';
	}

	/*maxim ample contingut*/
	function outerWd() {

	  if (document.all)
		return document.body.offsetWidth;//IE
	  else
		return window.innerWidth;//outerWidth;//FireFox
	}
	
	/*maxim alt contingut*/
	function outerHt() {
	  if (document.all)
		return document.body.offsetHeight; //IE
	  else
		return document.body.clientHeight;//window.scrollHeight;//innerHeight;//outerHeight; //FireFox
	}
	
	function MM_preloadImages() { //v3.0
		var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
		var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
		if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
	}
	