var table = document.getElementsByTagName("table");
for(var i = 0; i < table.length; i++){
	if(table[i].className == 'table-produto'){
		var produto = table[i];
		
		produto.onmouseover = function(){
			this.style.background = 'url("img/produto-bg.gif") repeat-x top';
			this.style.border = '1px dashed #CCCCCC';
		}		
		produto.onmouseout = function(){
			this.style.background = 'none';
			this.style.border = '1px solid #FFFFFF';
		}
	}
}
