function wswt() {
	$.get("/theme/KKRD/yes-wswt-redirect.php",null,
			function(data, textStatus, XMLHttpRequest) {
				if(textStatus == 'success') {
				
					var html = '<ul>';
					
					$(data).find("songs").each( function() {
						html = html + '<li>' + $(this).find("title").text() + ' by ' + $(this).find("by").text() + '</li>'; 							
					});
					
					html = html + '</ul>';
					
					$("#welcome_feed").html(html);
				} else {
					$("#welcome_feed").html("<ul><li>Sorry, the song list appears to be unavailable at this time. Please try back later.</li></ul>");
				}
			},"xml"
		);
}