loadRss = function(data) {
	var content = '';

	$.each(data.query.results.item,function(item){
		date = 
		content += '<a href="' + this.link + '"><h2>' + this.title + '</h2></a><p class="date"><font size="2">' + this.pubDate.substr(5,11) + '</font></p><p class="description"><font size="2">' + this.description +'</font></p>';
	});
	
	getContent = function() {return '<div class=rss-news><h1>Nyheder fra CMS Hardtalk DK</h1><span>Vi blogger om Content Management</span>' + content +'</div>'};
	
}

$(function(){	$('td[width=600]').prepend(getContent()); });
