$(document).ready(function(){
	highlight();
});




function highlight() {
	$('.animated').animate({backgroundColor: '#EAE9E8'},2000).animate({backgroundColor: '#FFE2B9'},2000);
	
	setTimeout('highlight()',5000);
}

