function argazkia (obj, argazkia2)
{
obj.src=argazkia2;
}

function aldatukolorea(obj, kolore)
{
obj.style.backgroundColor=kolore;
}
function aldatuletrakolorea (obj,kolore)
{
obj.style.color=kolore;
}
function mostrar(nombreCapa){
document.getElementById(nombreCapa).style.visibility="visible";
}

function ocultar(nombreCapa){
document.getElementById(nombreCapa).style.visibility="hidden";
} 

function aldatuborde(obj, kolore)
{
obj.style.border=kolore;
}
function irekilehio(helbidea)
{
	ireki=location.href=helbidea;
}

var imgActual = 0;
var listaImg = new Array('M_berriak3', 'M_berriak1','M_berriak2')


function aldatuberrik( )
	{

			ocultar(listaImg[0]);
			ocultar(listaImg[1]);
			ocultar(listaImg[2]);
			mostrar(listaImg[imgActual]);
		
	imgActual++;

	if (imgActual == 3)	
		{
		imgActual = 0;
		}

	}
	 

	 
