$(document).ready(function() {
   $("a.programlink").click(function(e) {
        var url = $(this).attr('href')+"&act=ajax";
        $(this).parent().load(url,function(e) {
            $(this).css({backgroundColor: "#FEA"}).animate({backgroundColor: "#f9f9f9"},3500);
        });
        e.preventDefault();
   });
});