
	// Aquest arxiu conté el codi per a mostar una capa o amagar-la.
	
	function mostraCapa()
	{			
		document.getElementById('capaImg').style.visibility = 'visible';
	}
	
	function amagaCapa()
	{	
		document.getElementById('capaImg').style.visibility = 'hidden';
	}
