$(document).ready(function(){
	
	$('#content #publica_registro')
	
		.mouseover(function(event){
			$(this).css({'background-color': '#fcffe0'})
			$(this).css({'color': '#ff6e8e'})
		})
		
		.mouseout(function(event){
			$(this).css({'background-color': '#ffffff'})
			$(this).css({'color': '#929292'})
		})
		
		.click(function(event){
			return false; 
		})

});

