$(document).ready(function(){
	
	$('#content #clientes_registro')
	
		.mouseover(function(event){
			$(this).css({'background-color': '#fcffe0'})
			//$(this).removeClass('clientes_formato1').addClass('clientes_rollover');
		})
		
		.mouseout(function(event){
			$(this).css({'background-color': '#ffffff'})
			//$(this).removeClass('clientes_rollover').addClass('clientes_formato1');
		})
		
		.click(function(event){
			return false; 
		})

});

