// JavaScript Document

$(document).ready(function(){
	var d = $.ajax({
		type:'GET',
		url: "http://www.975thefanatic.com/EI/SharedObjects/Handlers/ProxyHandler.ashx?url=http%3A//pipes.yahoo.com/pipes/pipe.run%3F_id%3Db7e66ef6d02dbb15ae459f25623c55f1%26_render%3Drss%26source1%3Dhttp%253A%252F%252Fphillysportsdaily.com%252Fcategory%252Feagles%252Ffeed%252F%26source2%3Dhttp%253A%252F%252Fphillysportsdaily.com%252Fcategory%252Fphillies%252Ffeed%252F%26source3%3Dhttp%253A%252F%252Fphillysportsdaily.com%252Fcategory%252Fflyers%252Ffeed%252F%26source4%3Dhttp%253A%252F%252Fphillysportsdaily.com%252Fcategory%252Fsixers%252Ffeed%252F%26source5%3Dhttp%253A%252F%252Fphillysportsdaily.com%252Fcategory%252Funion%252Ffeed%252F",
		dataType: "XML", 
		success: function(d){	
			$(d).find("item").each(function(sIndex){		
				//$(".fanatic-flash-btn").before('<li><a href="' + $(this).find("link").text() + '">' + $(this).find("title").text() + '</li>');
				$(".fanatic-flash-btn").before('<li><a href="' + $(this).find("link").text() + '">' + $(this).find("title").text() + '</a></li>');
				if(sIndex === 4){ return false; }
			});
		},
		error: function(error, textStatus, thrownError) {
			alert("Error: " + error.status + " -- " + thrownError + " -- " + textStatus);	
		}  
	}, "xml" );
});
