
LoadAll();

function LoadAll(){

        $.getJSON("/cgi-bin/misc-bin/xml2json.pl?file=/apps/web_docs/adeluweb/researchtuesdays/podcast/podcast.rss", function(data) {

            var recordCount = data.rss.channel.item.length;
            var node = data.rss.channel;
            var $myUL = $('<ul></ul>');

            for (var i=0; i<recordCount; i++) {
                var item            = node.item[i];
                var talkTitle       = item.title.$t;
                var talkUrl         = item.link.$t;

                var $myLI = $('<li><a href="' + talkUrl + '">' + talkTitle + '</a></li>');

                $myUL.append($myLI);

	        }

	        $("#explore_home").append($myUL);
	    });
    }

