var accos = document.getElementById('accos').getElementsByTagName('div'); for (i = 0; i < accos.length; i++) { accos[i].onmouseover = function() { this.oldbg = this.style.backgroundColor; this.style.backgroundColor = '#99CCFF'; } accos[i].onmouseout = function() { this.style.backgroundColor = this.oldbg; } accos[i].onclick = function() { window.open(this.getElementsByTagName('a')[0].href); return false; } } var blinks = document.getElementById('kolr').getElementsByTagName('dd'); for (i = 0; i < blinks.length; i++) { blinks[i].onmouseover = function() { this.oldbg = this.style.backgroundColor; this.style.backgroundColor = '#99CCFF'; } blinks[i].onmouseout = function() { this.style.backgroundColor = this.oldbg; } blinks[i].onclick = function() { window.open(this.getElementsByTagName('a')[0].href); return false; } }