var wl = {

Rssfeed : function () {
	$.get('./rss.php',{feed_url:'http://press.the-wastelands.org/?feed=rss2'},function(data){
	var rsstitle = ($('item:first title',data).text());
	$("#rssfeed").append(' <a href="' + $('item:first link',data).text() + '">' + $('item:first title',data).text() + '</a>');

	});
},

Flickrfeed : function(){
	$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=20371049@N00&tags=slwastelands&format=json&jsoncallback=?",
 	function(data){

		$.each(data.items, function(i,item){

			$("<img />").attr({
			// _b
			src: item.media.m.replace(/_m/i, "_b"),
			title: item.title,
			alt: item.title
		}).appendTo("#flickrslides");
	});

	$("#flickrslides").cycle({
		fx: 'fade'
	});
	});

}

}
jQuery(function ($) {
	if($("#rssfeed").length){wl.Rssfeed();}
	if($("#flickrfeed").length){wl.Flickrfeed();}
});
