window.addEvent('domready', function()
{
	var lista = $$('div.noticia')
	lista.each( function( noticia ) {
		var fx = new Fx.Styles( noticia , { duration : 300 , wait : false } );

		noticia.addEvent( 'mouseenter' , function() {
			fx.start( { backgroundColor : '#ffcc99' } );
		});

		noticia.addEvent( 'mouseleave' , function() {
			fx.start( {backgroundColor : '#ffffff' } );
		});
		
		noticia.addEvent( 'click' , function() {
			document.location.href = 'noticia.asp?id=' + noticia.getProperty( 'noticiaid' );
		});
	});
});