$(function(){
	$.ajax({
		url     : '/php/feed_iphone.php',
		type    : 'GET',
		dataType: 'xml',
		cache   : false,
		success : function(r){
			var html  = [];
			var max = 5;
			var count = 0;
			html.push('<ul>');
			$('item', r).each(function(){
				html.push([
				'<li>',
				'<a href="'+ $('link', this).text() +'">',
				$('title', this).text(),
				'</a></li>'
				].join(''));
				count++;
				if(count >= max){
					return false;
				}
			})
			html.push('</ul>');
			$('#information').html(html.join(''));				
			var news = $('#information_text li');
		}
	});
});