var htmlz1="";
$(document).ready(function() {
$("#feedContent1").html(""); //clear the content in the div for the next feed.
//use the JQuery get to grab the URL from the selected item, put the results in to an argument for parsing in the inline function called when the feed retrieval is complete
$.get('../api/get_forum.asp?group_id=81932',
function(d) { //find each 'item' in the file and parse it
//$("#feedContent1").empty();
//alert('i was here');
$(d).find('item').each(function() { //name the current found item this for this particular loop run
var $item = $(this); // grab the post title
var title = $item.find('title').text(); // grab the post's URL
var link = $item.find('link').text(); // next, the descripttion
//var descripttion = $item.find('descripttion').text(); //don't forget the pubdate
//var pubDate = $item.find('pubDate').text();
htmlz1 = htmlz1+"