/*
 * =================================================================
 * ProNord GmbH & Co. KG
 *
 *   Website  : http://www.freeware-download.com/
 *
 * Copyright (c) 2007 ProNord GmbH & Co. KG  All Rights Reserved.
 * Redistribution in part or in whole strictly prohibited. 
 * =================================================================
 */

/*
JQuery Funktionen
=============
*/
var html = '';
$(document).ready(function(){
	html += "<DIV padding:0 5px 0 5px;'>";
	$.get('http://www.freeware-download.com/blog/feed/', function(xml){
		$("item", xml).each(function(){
			$(this).find("link").each(function(){
				var name_text = $(this).text()
				html += "<div style='padding:0 0 8px 5px;'><a class='rsslink' href='" + name_text +"' ";
			}).end().find("description").each(function(){
				var name_text = $(this).text()
				html += "title='" + name_text +"'>";
			}).end().find("title").each(function(){
				var name_text = $(this).text()
				html += name_text + "</a></div>";
			});
		});
		html += "</DIV>";
		$("#rss_loading").html(html).hide();
		$("#rss").html(html).slideDown("slow");
	});
});