    	<!--//<![CDATA[
   window.onload = destacado;
    	function destacado(){
	var div = document.getElementsByTagName("div");
	for (i=0; i<div.length; i++) {	
	
	if(div[i].className=="listNot"){
		div[i].onmouseover = function() {
		 	this.style.background='#eee';
		}
		div[i].onmouseout = function() {
		 	this.style.background='#fff';
		}
		}
	}  
	}
	 //]]>-->