function mostrarGran(nomImatge,rutaImatge) {
	if (document.images) {
		var aux = new Image();
		aux.src = rutaImatge;
        document[nomImatge].src=aux.src; 
	}
}

function mostrarPetit(nomImatge,rutaImatge) {
	if (document.images) {
		var aux = new Image();
		aux.src = rutaImatge;
        document[nomImatge].src=aux.src; 
	}
}
