$(function() {
	var rssFeed = "http://rss.feedsportal.com/c/401/f/5943/index.rss";
	$.ajax({
	  url: "php/getRSS.php",
	  cache: false,
	  data: "rssurl="+encodeURIComponent(rssFeed)+"&maxitems=20",
	  success: function(html){
	    $("#rssticker").append(html);
		$("#rssticker ul").liScroll();
	  }
	});
});

