window.onload = function() {
	
var tudo = document.getElementsByTagName('*'); // pega todas as tags do documento
var matrizClasses = Array(); // cria uma matriz com todas as tags do elemento
for (var i=0; i<tudo.length; i++){ // loop que exibirá os elementos da matriz
  var arr = tudo[i];
  
  if (arr.className == 'img'){ // classe
    /* matrizClasses.push(el); */
	arr.onmouseover = function() {
		var elementID = this.id;
		this.style.background="url(images/" + elementID +"-hvr.png)";
		}

	arr.onmouseout = function() {
		this.style.background="url()";
		}
		
	}
  }
}
