nada mas tienes que poner estos script y el siguiente código por ahi hibas
Código HTML:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.pack.js"></script>
<script type="text/javascript" src="http://max.jsrhost.com/ajaxify/packed.ajaxify.js"></script>
<script type="text/javascript" src="http://dev.jquery.com/view/trunk/plugins/color/jquery.color.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.ajaxify').each(function(){
var th = $(this);
th.ajaxify({
onComplete:function(){
$( th.attr("target") ).animate({ backgroundColor: "yellow" }, 500).
animate({ backgroundColor: "white" }, 500);
}
});
});
});
</script>
saludos
:]