$(function() {
    var sexyregex = /^http:\/\/(hotfile\.com|rapidshare\.com|megaupload\.com|uploading\.com|www.filesonic\.com|www.fileserve\.com)\/[\S]+$/;
    $('body *').contents().filter(function() {
        return this.nodeType == 3 &&
            $(this).text().trim() !== '' &&
            $(this).text().trim().match(sexyregex);
    }).each(function() {
        $(this).replaceWith('<a href="' + $(this).text().trim() + '"target="_blank" rel="zoo">' + $(this).text().trim() + '</a>');
    });
});
