var glrurl=new Array();
var glrtitulo=new Array();
var glrtamano=new Array();

  
function paseImaxe (mover) {
    pos=pos+mover;

  	if (pos < 0) {
  		pos = total - 1;
  	} else if (pos >= total) {
  		pos = 0;
  	}
    verImaxe(pos);
}

function verImaxe (pos) {
   	document.getElementById('mostra_galeria').innerHTML='<img src="'+glrurl[pos]+'" alt=" " '+glrtamano[pos]+'  class="fotogrande_galeria" />'+glrtitulo[pos];
}	