$(document).ready(
    function() {
        $(".ajRSS").click(
            function() {
                var html = $.ajax( {
                    url : 'loadrss.php?page=' + $(this).attr("href")
                    + '&title=' + $(this).html(),
                    async : false
                }).responseText;
                $(".vid_sup").html(
                    '<div class="sup_head">Latest BBC '
                    + $(this).html() + '</div>' + html);
                return false;
            });

    });
