RUZEE.Events.add(window, 'domload', function(){
	$$('.new-bloq').each(
		function( el ){
			Event.observe( el, 'mouseover', news_color );
			Event.observe( el, 'mouseout', news_decolor );
		}
	);
});

function news_color( evt ){
	var el = Event.findElement( evt, 'div' );
	if( !$(el).hasClassName('new-bloq') ){
		el = $(el).up('.new-bloq');
	}
	$(el).setStyle( {color:'#000',backgroundColor:'#f3fffe'} );
}
function news_decolor( evt ){
	var el = Event.findElement( evt, 'div' );
	if( !$(el).hasClassName('new-bloq') ){
		el = $(el).up('.new-bloq');
	}
	$(el).setStyle( {color:'gray',backgroundColor:'#ffffff'} );
}