$(document).ready(function() { 
	$('#destacado_rotacion').innerfade({ 
		animationtype: 'fade',
		speed: 3000, 
		timeout: 9000, 
		type: 'random_start', 
		containerheight: '154px'
	});
		
});

function colorON(objeto, color) {
	  $(objeto).animate({ backgroundColor: color }, 500);
	}

function colorOFF(objeto) {
  $(objeto).animate({ backgroundColor: "#FFFFFF" }, 500);
}
