$(document).ready(function() {
    
    $(".expand-title").attr("link", function (arr) {
          return $(this).attr("href");
    });
    $(".expand-title").attr("title","Click for more info");
    $(".expand-title").removeAttr("href");
    $(".expand-title").click(function() {
        var linkUrl = $(this).attr("link");
        $(this).parent().fadeOut("slow",function callback() {
            $(this).removeAttr("title");
            $(this).load(linkUrl + " .center-content");
            $(this).fadeIn("slow");
        });
    });

});

