$(function() {
    $("img").filter("[cmspath]").each(function() {
        $(this).attr("src",$(this).attr("cmspath")+$(this).attr("src")).removeAttr("cmspath");
    });
    
    $("a").filter("[cmspath]").each(function() {
        $(this).attr("href",$(this).attr("cmspath")+$(this).attr("href")).removeAttr("cmspath");
    });
});
