function cambiaCursor(src,modo){	if(modo==1){		src.style.cursor = 'hand';	}else if(modo==2){		src.style.cursor = 'default';	}}function muestra(num){	miobejetoimg=new Image;	miobejetoimg = document.getElementById("imagen"+num);	miobejeto = document.getElementById("tabla"+num);	if(miobejeto.style.display=="block"){		miobejeto.style.display="none";		miobejetoimg.src="img/flechamenu1.gif"	}else{		miobejeto.style.display="block";		miobejetoimg.src="img/flechamenu2.gif"	}}