$.getJSON("http://wowfeeds.wipeitau.com/GuildActivity.php?location=EU&rn=Bloodhoof&gn=Renegades%20at War&limit=5&callback=?",
	function(data){
		$('#guildinfo').append('<h4>Level  <span style="color: #0cf;">'+data.guildLevel+'</span> Guild - Bloodhoof EU</h4>');
		$("#guildinfo .loading").css("display", "none"); 
		$.each(data.guildActivity, function(i,item){
			var itxt = '';
			if(item.type=="Item"){ itxt = '<a href=http://www.wowhead.com/item='+item.numId+' target="new" class="item">'+item.achObjective+'</a>'; }
			else if(item.type=="Achievement"){ itxt = '<a href=http://www.wowhead.com/achievement='+item.numId+' target="new">'+item.achObjective+'</a>'; }
			else if(item.type=="Guild Level"){ itxt = '<a href=http://www.wowhead.com/achievement='+item.numId+' target="new">'+item.achObjective+'</a>'; }
			var iname = '';
			if(data.guildName==item.name){ iname = '<a href="http://eu.battle.net/wow/en/guild/'+data.realmName+'/'+item.name+'/achievement" target="new" style="color: #0cf;">'+item.name+'</a>'; }
			else{ var iname = '<a href="http://eu.battle.net/wow/en/character/'+data.realmName+'/'+item.name+'/achievement" target="new" style="color: #0cf;">'+item.name+'</a>'; }
			$('#activityfeed').append('<img src="'+item.achImage+'" alt="'+item.achObjective+'" /><p>'+iname+' '+item.achText+' '+itxt+'</p>');
			if ( i == 4 ) return false;
		});
	  $("#activityfeed .loading").css("display", "none"); 	
	});
