var CurrentMax;
function __flash__removeCallback(instance, name) {
if(instance) {
instance[name] = null;
}
}
function RefreshPage() {
location.reload(true);
}
function UpdateEvents() {
$('.WidgetHeader, .LargeWidgetHeader').hover(function(){
$(this).addClass('Visible');
}, function(){
$(this).removeClass('Visible');
});
$('.Mid','.LargeWidgetHeader').click(function(){
// Clear any existing maximised widgets
$('.LargeWidgetHeader').remove();
$('.LargeWidgetContent').remove();
// Show the smaller version of current widget
RefreshWidget(CurrentMax, '');
$('#Widget' + CurrentMax).show();
CurrentMax = '';
});
}
function MaximiseWidget (WidgetID, Params) {
// Remove the content of the small widget
$('#' + WidgetID).children('.WidgetContent').html('');
// Hide the small widget
$('#' + WidgetID).hide();
// Get the new widget title
var WidgetTitle = $('#' + WidgetID).children('.WidgetHeader').children('.WidgetTitle').html();
if (WidgetTitle == null) {
WidgetTitle = 'Loading...';
}
// Clear any existing maximised widgets
$('.LargeWidgetHeader').remove();
$('.LargeWidgetContent').remove();
// Add loading page
$('.DoubleColumn').prepend ('

');
// Add the hover capability
UpdateEvents();
// Scroll user to the top
scroll(0,0);
// restore the old widget
if (CurrentMax != '') {
RefreshWidget(CurrentMax, '');
$('#Widget' + CurrentMax).show();
}
// update the current maximised widget
CurrentMax = WidgetID.replace('Widget','');
// Get full screen widget code
$.ajax({
url: 'GetWidget.asp?Widget=' + WidgetID.replace("Widget","") + '&' + Params,
success: function(data) {
// Clear loading page
$('.LargeWidgetHeader').remove();
$('.LargeWidgetContent').remove();
// Add the new html
$('.DoubleColumn').prepend (data);
// Add the hover capability
UpdateEvents();
},
error: function() {
// Notify user
alert('Sorry, ' + WidgetTitle + ' could not be maximised. Please ensure you are connected to the internet.');
// Clear loading page
$('.LargeWidgetHeader').remove();
$('.LargeWidgetContent').remove();
// Restore smaller widget
RefreshWidget(CurrentMax, '');
$('#Widget' + CurrentMax).show();
CurrentMax = '';
// Update events
UpdateEvents();
}
});
}
function RefreshWidget (WidgetID, Params) {
$.ajaxSetup({cache: false});
$.ajax({
url: 'GetWidget.asp?Size=Small&Widget=' + WidgetID,
success: function(data) {
$('#Widget' + WidgetID).children('.WidgetContent').html(data);
},
error: function() {
}
});
}
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/"; domain=''; secure='';
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
var AllPlayers = new Array();
var Positions = new Array();
Positions[1] = 'GK';
Positions[2] = 'DF';
Positions[3] = 'MD';
Positions[4] = 'FW';
function CLS_Player() {
this.Forename = '';
this.Surname = '';
this.Position = '';
this.TeamID = '';
this.Price = '';
}
function Add_Player(ID, Forename, Surname, Position, TeamID, Price){
var NewPlayer = new CLS_Player;
NewPlayer.Forename = Forename;
NewPlayer.Surname = Surname;
NewPlayer.Position = Position;
NewPlayer.TeamID = TeamID;
NewPlayer.Price = Price;
AllPlayers[ID] = NewPlayer;
}
var AllTeams = new Array();
function CLS_Team() {
this.Name = '';
this.ShortName = '';
this.ShirtURL = '';
this.Rank = '';
this.Fixtures = new Array(39);
for (i = 0; i < this.Fixtures.length; ++ i) {
this.Fixtures[i] = new Array();
}
this.Fixtures[0] [1] = 'test';
}
function Add_Team(ID, Name, ShortName, ShirtURL, Rank){
var NewTeam = new CLS_Team;
NewTeam.Name = Name;
NewTeam.ShortName = ShortName;
NewTeam.ShirtURL = ShirtURL;
NewTeam.Rank = Rank;
AllTeams[ID] = NewTeam;
}
function CLS_Fixture() {
this.Opponent = '';
this.Home = false;
}
function Add_Fixture (TeamID, Gameweek, Opponent, Home) {
var NewFixture = new CLS_Fixture();
NewFixture.Opponent = Opponent;
NewFixture.Home = Home;
AllTeams[TeamID].Fixtures[Gameweek] [AllTeams[TeamID].Fixtures[Gameweek].length] = NewFixture;
//AllTeams[TeamID].Fixtures[Gameweek].length
}
var Watchlist = new Array();
var MyTeam = new Array();
Add_Team (33,"Arsenal","ARS","http://totalfpl.com/images/shirts/20112012_Arsenal.png",5);Add_Team (34,"Aston Villa","AVL","http://totalfpl.com/images/shirts/20112012_AstonVilla.png",12);Add_Team (36,"Blackburn","BLA","http://totalfpl.com/images/shirts/20112012_Blackburn.png",20);Add_Team (38,"Bolton","BOL","http://totalfpl.com/images/shirts/20112012_Bolton.png",17);Add_Team (39,"Chelsea","CHE","http://totalfpl.com/images/shirts/20112012_Chelsea.png",3);Add_Team (40,"Everton","EVE","http://totalfpl.com/images/shirts/20112012_Everton.png",8);Add_Team (41,"Fulham","FUL","http://totalfpl.com/images/shirts/20112012_Fulham.png",13);Add_Team (42,"Liverpool","LIV","http://totalfpl.com/images/shirts/20112012_Liverpool.png",6);Add_Team (43,"Man City","MCY","http://totalfpl.com/images/shirts/20112012_ManCity.png",1);Add_Team (44,"Man Utd","MUN","http://totalfpl.com/images/shirts/20112012_ManUtd.png",2);Add_Team (45,"Newcastle","NEW","http://totalfpl.com/images/shirts/20112012_Newcastle.png",7);Add_Team (54,"Norwich City","NOR","http://totalfpl.com/images/shirts/20112012_NorwichCity.png",14);Add_Team (53,"QPR","QPR","http://totalfpl.com/images/shirts/20112012_QPR.png",18);Add_Team (46,"Stoke City","STK","http://totalfpl.com/images/shirts/20112012_Stoke.png",9);Add_Team (47,"Sunderland","SUN","http://totalfpl.com/images/shirts/20112012_Sunderland.png",10);Add_Team (55,"Swansea","SWA","http://totalfpl.com/images/shirts/20112012_Swansea.png",15);Add_Team (48,"Tottenham","TOT","http://totalfpl.com/images/shirts/20112012_Tottenham.png",4);Add_Team (49,"West Brom","WBA","http://totalfpl.com/images/shirts/20112012_WBA.png",11);Add_Team (51,"Wigan","WIG","http://totalfpl.com/images/shirts/20112012_Wigan.png",19);Add_Team (52,"Wolves","WOL","http://totalfpl.com/images/shirts/20112012_Wolves.png",16);Add_Fixture(42,0,40,true);Add_Fixture(40,0,42,false);Add_Fixture(36,1,52,true);Add_Fixture(52,1,36,false);Add_Fixture(45,1,33,true);Add_Fixture(33,1,45,false);Add_Fixture(42,1,47,true);Add_Fixture(47,1,42,false);Add_Fixture(41,1,34,true);Add_Fixture(34,1,41,false);Add_Fixture(51,1,54,true);Add_Fixture(54,1,51,false);Add_Fixture(43,1,55,true);Add_Fixture(55,1,43,false);Add_Fixture(49,1,44,true);Add_Fixture(44,1,49,false);Add_Fixture(46,1,39,true);Add_Fixture(39,1,46,false);Add_Fixture(53,1,38,true);Add_Fixture(38,1,53,false);Add_Fixture(52,2,41,true);Add_Fixture(41,2,52,false);Add_Fixture(34,2,36,true);Add_Fixture(36,2,34,false);Add_Fixture(44,2,48,true);Add_Fixture(48,2,44,false);Add_Fixture(38,2,43,true);Add_Fixture(43,2,38,false);Add_Fixture(39,2,49,true);Add_Fixture(49,2,39,false);Add_Fixture(40,2,53,true);Add_Fixture(53,2,40,false);Add_Fixture(47,2,45,true);Add_Fixture(45,2,47,false);Add_Fixture(33,2,42,true);Add_Fixture(42,2,33,false);Add_Fixture(55,2,51,true);Add_Fixture(51,2,55,false);Add_Fixture(54,2,46,true);Add_Fixture(46,2,54,false);Add_Fixture(36,3,40,true);Add_Fixture(40,3,36,false);Add_Fixture(44,3,33,true);Add_Fixture(33,3,44,false);Add_Fixture(45,3,41,true);Add_Fixture(41,3,45,false);Add_Fixture(49,3,46,true);Add_Fixture(46,3,49,false);Add_Fixture(48,3,43,true);Add_Fixture(43,3,48,false);Add_Fixture(51,3,53,true);Add_Fixture(53,3,51,false);Add_Fixture(55,3,47,true);Add_Fixture(47,3,55,false);Add_Fixture(42,3,38,true);Add_Fixture(38,3,42,false);Add_Fixture(39,3,54,true);Add_Fixture(54,3,39,false);Add_Fixture(34,3,52,true);Add_Fixture(52,3,34,false);Add_Fixture(43,4,51,true);Add_Fixture(51,4,43,false);Add_Fixture(52,4,48,true);Add_Fixture(48,4,52,false);Add_Fixture(38,4,44,true);Add_Fixture(44,4,38,false);Add_Fixture(41,4,36,true);Add_Fixture(36,4,41,false);Add_Fixture(53,4,45,true);Add_Fixture(45,4,53,false);Add_Fixture(47,4,39,true);Add_Fixture(39,4,47,false);Add_Fixture(54,4,49,true);Add_Fixture(49,4,54,false);Add_Fixture(40,4,34,true);Add_Fixture(34,4,40,false);Add_Fixture(46,4,42,true);Add_Fixture(42,4,46,false);Add_Fixture(33,4,55,true);Add_Fixture(55,4,33,false);Add_Fixture(52,5,53,true);Add_Fixture(53,5,52,false);Add_Fixture(48,5,42,true);Add_Fixture(42,5,48,false);Add_Fixture(55,5,49,true);Add_Fixture(49,5,55,false);Add_Fixture(38,5,54,true);Add_Fixture(54,5,38,false);Add_Fixture(34,5,45,true);Add_Fixture(45,5,34,false);Add_Fixture(36,5,33,true);Add_Fixture(33,5,36,false);Add_Fixture(44,5,39,true);Add_Fixture(39,5,44,false);Add_Fixture(40,5,51,true);Add_Fixture(51,5,40,false);Add_Fixture(47,5,46,true);Add_Fixture(46,5,47,false);Add_Fixture(41,5,43,true);Add_Fixture(43,5,41,false);Add_Fixture(49,6,41,true);Add_Fixture(41,6,49,false);Add_Fixture(33,6,38,true);Add_Fixture(38,6,33,false);Add_Fixture(54,6,47,true);Add_Fixture(47,6,54,false);Add_Fixture(51,6,48,true);Add_Fixture(48,6,51,false);Add_Fixture(53,6,34,true);Add_Fixture(34,6,53,false);Add_Fixture(39,6,55,true);Add_Fixture(55,6,39,false);Add_Fixture(42,6,52,true);Add_Fixture(52,6,42,false);Add_Fixture(45,6,36,true);Add_Fixture(36,6,45,false);Add_Fixture(46,6,44,true);Add_Fixture(44,6,46,false);Add_Fixture(43,6,40,true);Add_Fixture(40,6,43,false);Add_Fixture(52,7,45,true);Add_Fixture(45,7,52,false);Add_Fixture(41,7,53,true);Add_Fixture(53,7,41,false);Add_Fixture(40,7,42,true);Add_Fixture(42,7,40,false);Add_Fixture(55,7,46,true);Add_Fixture(46,7,55,false);Add_Fixture(47,7,49,true);Add_Fixture(49,7,47,false);Add_Fixture(48,7,33,true);Add_Fixture(33,7,48,false);Add_Fixture(36,7,43,true);Add_Fixture(43,7,36,false);Add_Fixture(34,7,51,true);Add_Fixture(51,7,34,false);Add_Fixture(38,7,39,true);Add_Fixture(39,7,38,false);Add_Fixture(44,7,54,true);Add_Fixture(54,7,44,false);Add_Fixture(39,8,40,true);Add_Fixture(40,8,39,false);Add_Fixture(54,8,55,true);Add_Fixture(55,8,54,false);Add_Fixture(46,8,41,true);Add_Fixture(41,8,46,false);Add_Fixture(33,8,47,true);Add_Fixture(47,8,33,false);Add_Fixture(51,8,38,true);Add_Fixture(38,8,51,false);Add_Fixture(45,8,48,true);Add_Fixture(48,8,45,false);Add_Fixture(53,8,36,true);Add_Fixture(36,8,53,false);Add_Fixture(49,8,52,true);Add_Fixture(52,8,49,false);Add_Fixture(43,8,34,true);Add_Fixture(34,8,43,false);Add_Fixture(42,8,44,true);Add_Fixture(44,8,42,false);Add_Fixture(45,9,51,true);Add_Fixture(51,9,45,false);Add_Fixture(33,9,46,true);Add_Fixture(46,9,33,false);Add_Fixture(42,9,54,true);Add_Fixture(54,9,42,false);Add_Fixture(53,9,39,true);Add_Fixture(39,9,53,false);Add_Fixture(38,9,47,true);Add_Fixture(47,9,38,false);Add_Fixture(41,9,40,true);Add_Fixture(40,9,41,false);Add_Fixture(44,9,43,true);Add_Fixture(43,9,44,false);Add_Fixture(34,9,49,true);Add_Fixture(49,9,34,false);Add_Fixture(36,9,48,true);Add_Fixture(48,9,36,false);Add_Fixture(52,9,55,true);Add_Fixture(55,9,52,false);Add_Fixture(46,10,45,true);Add_Fixture(45,10,46,false);Add_Fixture(47,10,34,true);Add_Fixture(34,10,47,false);Add_Fixture(49,10,42,true);Add_Fixture(42,10,49,false);Add_Fixture(48,10,53,true);Add_Fixture(53,10,48,false);Add_Fixture(43,10,52,true);Add_Fixture(52,10,43,false);Add_Fixture(51,10,41,true);Add_Fixture(41,10,51,false);Add_Fixture(40,10,44,true);Add_Fixture(44,10,40,false);Add_Fixture(54,10,36,true);Add_Fixture(36,10,54,false);Add_Fixture(55,10,38,true);Add_Fixture(38,10,55,false);Add_Fixture(39,10,33,true);Add_Fixture(33,10,39,false);Add_Fixture(34,11,54,true);Add_Fixture(54,11,34,false);Add_Fixture(36,11,39,true);Add_Fixture(39,11,36,false);Add_Fixture(38,11,46,true);Add_Fixture(46,11,38,false);Add_Fixture(53,11,43,true);Add_Fixture(43,11,53,false);Add_Fixture(52,11,51,true);Add_Fixture(51,11,52,false);Add_Fixture(41,11,48,true);Add_Fixture(48,11,41,false);Add_Fixture(42,11,55,true);Add_Fixture(55,11,42,false);Add_Fixture(45,11,40,true);Add_Fixture(40,11,45,false);Add_Fixture(33,11,49,true);Add_Fixture(49,11,33,false);Add_Fixture(44,11,47,true);Add_Fixture(47,11,44,false);Add_Fixture(55,12,44,true);Add_Fixture(44,12,55,false);Add_Fixture(49,12,38,true);Add_Fixture(38,12,49,false);Add_Fixture(48,12,34,true);Add_Fixture(34,12,48,false);Add_Fixture(54,12,33,true);Add_Fixture(33,12,54,false);Add_Fixture(43,12,45,true);Add_Fixture(45,12,43,false);Add_Fixture(40,12,52,true);Add_Fixture(52,12,40,false);Add_Fixture(51,12,36,true);Add_Fixture(36,12,51,false);Add_Fixture(39,12,42,true);Add_Fixture(42,12,39,false);Add_Fixture(46,12,53,true);Add_Fixture(53,12,46,false);Add_Fixture(47,12,41,true);Add_Fixture(41,12,47,false);Add_Fixture(54,13,53,true);Add_Fixture(53,13,54,false);Add_Fixture(46,13,36,true);Add_Fixture(36,13,46,false);Add_Fixture(38,13,40,true);Add_Fixture(40,13,38,false);Add_Fixture(33,13,41,true);Add_Fixture(41,13,33,false);Add_Fixture(42,13,43,true);Add_Fixture(43,13,42,false);Add_Fixture(49,13,48,true);Add_Fixture(48,13,49,false);Add_Fixture(44,13,45,true);Add_Fixture(45,13,44,false);Add_Fixture(55,13,34,true);Add_Fixture(34,13,55,false);Add_Fixture(47,13,51,true);Add_Fixture(51,13,47,false);Add_Fixture(39,13,52,true);Add_Fixture(52,13,39,false);Add_Fixture(43,14,54,true);Add_Fixture(54,14,43,false);Add_Fixture(41,14,42,true);Add_Fixture(42,14,41,false);Add_Fixture(48,14,38,true);Add_Fixture(38,14,48,false);Add_Fixture(51,14,33,true);Add_Fixture(33,14,51,false);Add_Fixture(34,14,44,true);Add_Fixture(44,14,34,false);Add_Fixture(53,14,49,true);Add_Fixture(49,14,53,false);Add_Fixture(40,14,46,true);Add_Fixture(46,14,40,false);Add_Fixture(36,14,55,true);Add_Fixture(55,14,36,false);Add_Fixture(52,14,47,true);Add_Fixture(47,14,52,false);Add_Fixture(45,14,39,true);Add_Fixture(39,14,45,false);Add_Fixture(39,15,43,true);Add_Fixture(43,15,39,false);Add_Fixture(47,15,36,true);Add_Fixture(36,15,47,false);Add_Fixture(33,15,40,true);Add_Fixture(40,15,33,false);Add_Fixture(55,15,41,true);Add_Fixture(41,15,55,false);Add_Fixture(38,15,34,true);Add_Fixture(34,15,38,false);Add_Fixture(44,15,52,true);Add_Fixture(52,15,44,false);Add_Fixture(54,15,45,true);Add_Fixture(45,15,54,false);Add_Fixture(46,15,48,true);Add_Fixture(48,15,46,false);Add_Fixture(49,15,51,true);Add_Fixture(51,15,49,false);Add_Fixture(42,15,53,true);Add_Fixture(53,15,42,false);Add_Fixture(40,16,54,true);Add_Fixture(54,16,40,false);Add_Fixture(41,16,38,true);Add_Fixture(38,16,41,false);Add_Fixture(53,16,44,true);Add_Fixture(44,16,53,false);Add_Fixture(43,16,33,true);Add_Fixture(33,16,43,false);Add_Fixture(36,16,49,true);Add_Fixture(49,16,36,false);Add_Fixture(48,16,47,true);Add_Fixture(47,16,48,false);Add_Fixture(52,16,46,true);Add_Fixture(46,16,52,false);Add_Fixture(51,16,39,true);Add_Fixture(39,16,51,false);Add_Fixture(45,16,55,true);Add_Fixture(55,16,45,false);Add_Fixture(34,16,42,true);Add_Fixture(42,16,34,false);Add_Fixture(51,17,42,true);Add_Fixture(42,17,51,false);Add_Fixture(45,17,49,true);Add_Fixture(49,17,45,false);Add_Fixture(34,17,33,true);Add_Fixture(33,17,34,false);Add_Fixture(36,17,38,true);Add_Fixture(38,17,36,false);Add_Fixture(40,17,55,true);Add_Fixture(55,17,40,false);Add_Fixture(48,17,39,true);Add_Fixture(39,17,48,false);Add_Fixture(43,17,46,true);Add_Fixture(46,17,43,false);Add_Fixture(52,17,54,true);Add_Fixture(54,17,52,false);Add_Fixture(53,17,47,true);Add_Fixture(47,17,53,false);Add_Fixture(41,17,44,true);Add_Fixture(44,17,41,false);Add_Fixture(44,18,51,true);Add_Fixture(51,18,44,false);Add_Fixture(49,18,43,true);Add_Fixture(43,18,49,false);Add_Fixture(42,18,36,true);Add_Fixture(36,18,42,false);Add_Fixture(47,18,40,true);Add_Fixture(40,18,47,false);Add_Fixture(38,18,45,true);Add_Fixture(45,18,38,false);Add_Fixture(54,18,48,true);Add_Fixture(48,18,54,false);Add_Fixture(46,18,34,true);Add_Fixture(34,18,46,false);Add_Fixture(39,18,41,true);Add_Fixture(41,18,39,false);Add_Fixture(55,18,53,true);Add_Fixture(53,18,55,false);Add_Fixture(33,18,52,true);Add_Fixture(52,18,33,false);Add_Fixture(38,19,52,true);Add_Fixture(52,19,38,false);Add_Fixture(55,19,48,true);Add_Fixture(48,19,55,false);Add_Fixture(54,19,41,true);Add_Fixture(41,19,54,false);Add_Fixture(49,19,40,true);Add_Fixture(40,19,49,false);Add_Fixture(42,19,45,true);Add_Fixture(45,19,42,false);Add_Fixture(33,19,53,true);Add_Fixture(53,19,33,false);Add_Fixture(46,19,51,true);Add_Fixture(51,19,46,false);Add_Fixture(47,19,43,true);Add_Fixture(43,19,47,false);Add_Fixture(39,19,34,true);Add_Fixture(34,19,39,false);Add_Fixture(44,19,36,true);Add_Fixture(36,19,44,false);Add_Fixture(41,20,33,true);Add_Fixture(33,20,41,false);Add_Fixture(43,20,42,true);Add_Fixture(42,20,43,false);Add_Fixture(45,20,44,true);Add_Fixture(44,20,45,false);Add_Fixture(40,20,38,true);Add_Fixture(38,20,40,false);Add_Fixture(34,20,55,true);Add_Fixture(55,20,34,false);Add_Fixture(36,20,46,true);Add_Fixture(46,20,36,false);Add_Fixture(53,20,54,true);Add_Fixture(54,20,53,false);Add_Fixture(52,20,39,true);Add_Fixture(39,20,52,false);Add_Fixture(51,20,47,true);Add_Fixture(47,20,51,false);Add_Fixture(48,20,49,true);Add_Fixture(49,20,48,false);Add_Fixture(48,20,40,true);Add_Fixture(40,20,48,false);Add_Fixture(55,21,33,true);Add_Fixture(33,21,55,false);Add_Fixture(49,21,54,true);Add_Fixture(54,21,49,false);Add_Fixture(48,21,52,true);Add_Fixture(52,21,48,false);Add_Fixture(51,21,43,true);Add_Fixture(43,21,51,false);Add_Fixture(45,21,53,true);Add_Fixture(53,21,45,false);Add_Fixture(42,21,46,true);Add_Fixture(46,21,42,false);Add_Fixture(44,21,38,true);Add_Fixture(38,21,44,false);Add_Fixture(36,21,41,true);Add_Fixture(41,21,36,false);Add_Fixture(39,21,47,true);Add_Fixture(47,21,39,false);Add_Fixture(34,21,40,true);Add_Fixture(40,21,34,false);Add_Fixture(53,22,51,true);Add_Fixture(51,22,53,false);Add_Fixture(43,22,48,true);Add_Fixture(48,22,43,false);Add_Fixture(46,22,49,true);Add_Fixture(49,22,46,false);Add_Fixture(40,22,36,true);Add_Fixture(36,22,40,false);Add_Fixture(47,22,55,true);Add_Fixture(55,22,47,false);Add_Fixture(38,22,42,true);Add_Fixture(42,22,38,false);Add_Fixture(54,22,39,true);Add_Fixture(39,22,54,false);Add_Fixture(33,22,44,true);Add_Fixture(44,22,33,false);Add_Fixture(41,22,45,true);Add_Fixture(45,22,41,false);Add_Fixture(52,22,34,true);Add_Fixture(34,22,52,false);Add_Fixture(52,23,42,true);Add_Fixture(42,23,52,false);Add_Fixture(34,23,53,true);Add_Fixture(53,23,34,false);Add_Fixture(41,23,49,true);Add_Fixture(49,23,41,false);Add_Fixture(38,23,33,true);Add_Fixture(33,23,38,false);Add_Fixture(44,23,46,true);Add_Fixture(46,23,44,false);Add_Fixture(40,23,43,true);Add_Fixture(43,23,40,false);Add_Fixture(48,23,51,true);Add_Fixture(51,23,48,false);Add_Fixture(55,23,39,true);Add_Fixture(39,23,55,false);Add_Fixture(47,23,54,true);Add_Fixture(54,23,47,false);Add_Fixture(36,23,45,true);Add_Fixture(45,23,36,false);Add_Fixture(39,24,44,true);Add_Fixture(44,24,39,false);Add_Fixture(43,24,41,true);Add_Fixture(41,24,43,false);Add_Fixture(42,24,48,true);Add_Fixture(48,24,42,false);Add_Fixture(53,24,52,true);Add_Fixture(52,24,53,false);Add_Fixture(45,24,34,true);Add_Fixture(34,24,45,false);Add_Fixture(33,24,36,true);Add_Fixture(36,24,33,false);Add_Fixture(46,24,47,true);Add_Fixture(47,24,46,false);Add_Fixture(49,24,55,true);Add_Fixture(55,24,49,false);Add_Fixture(51,24,40,true);Add_Fixture(40,24,51,false);Add_Fixture(54,24,38,true);Add_Fixture(38,24,54,false);Add_Fixture(38,25,51,true);Add_Fixture(51,25,38,false);Add_Fixture(48,25,45,true);Add_Fixture(45,25,48,false);Add_Fixture(52,25,49,true);Add_Fixture(49,25,52,false);Add_Fixture(55,25,54,true);Add_Fixture(54,25,55,false);Add_Fixture(40,25,39,true);Add_Fixture(39,25,40,false);Add_Fixture(36,25,53,true);Add_Fixture(53,25,36,false);Add_Fixture(34,25,43,true);Add_Fixture(43,25,34,false);Add_Fixture(41,25,46,true);Add_Fixture(46,25,41,false);Add_Fixture(47,25,33,true);Add_Fixture(33,25,47,false);Add_Fixture(44,25,42,true);Add_Fixture(42,25,44,false);Add_Fixture(39,26,38,true);Add_Fixture(38,26,39,false);Add_Fixture(51,26,34,true);Add_Fixture(34,26,51,false);Add_Fixture(49,26,47,true);Add_Fixture(47,26,49,false);Add_Fixture(54,26,44,true);Add_Fixture(44,26,54,false);Add_Fixture(45,26,52,true);Add_Fixture(52,26,45,false);Add_Fixture(46,26,55,true);Add_Fixture(55,26,46,false);Add_Fixture(53,26,41,true);Add_Fixture(41,26,53,false);Add_Fixture(33,26,48,true);Add_Fixture(48,26,33,false);Add_Fixture(43,26,36,true);Add_Fixture(36,26,43,false);Add_Fixture(46,27,54,true);Add_Fixture(54,27,46,false);Add_Fixture(45,27,47,true);Add_Fixture(47,27,45,false);Add_Fixture(41,27,52,true);Add_Fixture(52,27,41,false);Add_Fixture(51,27,55,true);Add_Fixture(55,27,51,false);Add_Fixture(49,27,39,true);Add_Fixture(39,27,49,false);Add_Fixture(36,27,34,true);Add_Fixture(34,27,36,false);Add_Fixture(53,27,40,true);Add_Fixture(40,27,53,false);Add_Fixture(48,27,44,true);Add_Fixture(44,27,48,false);Add_Fixture(42,27,33,true);Add_Fixture(33,27,42,false);Add_Fixture(43,27,38,true);Add_Fixture(38,27,43,false);Add_Fixture(39,28,46,true);Add_Fixture(46,28,39,false);Add_Fixture(40,28,48,true);Add_Fixture(48,28,40,false);Add_Fixture(33,28,45,true);Add_Fixture(45,28,33,false);Add_Fixture(55,28,43,true);Add_Fixture(43,28,55,false);Add_Fixture(34,28,41,true);Add_Fixture(41,28,34,false);Add_Fixture(54,28,51,true);Add_Fixture(51,28,54,false);Add_Fixture(44,28,49,true);Add_Fixture(49,28,44,false);Add_Fixture(38,28,53,true);Add_Fixture(53,28,38,false);Add_Fixture(47,28,42,true);Add_Fixture(42,28,47,false);Add_Fixture(52,28,36,true);Add_Fixture(36,28,52,false);Add_Fixture(53,29,42,true);Add_Fixture(42,29,53,false);Add_Fixture(34,29,38,true);Add_Fixture(38,29,34,false);Add_Fixture(51,29,49,true);Add_Fixture(49,29,51,false);Add_Fixture(36,29,47,true);Add_Fixture(47,29,36,false);Add_Fixture(52,29,44,true);Add_Fixture(44,29,52,false);Add_Fixture(40,29,33,true);Add_Fixture(33,29,40,false);Add_Fixture(45,29,54,true);Add_Fixture(54,29,45,false);Add_Fixture(43,29,39,true);Add_Fixture(39,29,43,false);Add_Fixture(48,29,46,true);Add_Fixture(46,29,48,false);Add_Fixture(41,29,55,true);Add_Fixture(55,29,41,false);Add_Fixture(33,30,34,true);Add_Fixture(34,30,33,false);Add_Fixture(42,30,51,true);Add_Fixture(51,30,42,false);Add_Fixture(38,30,36,true);Add_Fixture(36,30,38,false);Add_Fixture(39,30,48,true);Add_Fixture(48,30,39,false);Add_Fixture(54,30,52,true);Add_Fixture(52,30,54,false);Add_Fixture(47,30,53,true);Add_Fixture(53,30,47,false);Add_Fixture(46,30,43,true);Add_Fixture(43,30,46,false);Add_Fixture(49,30,45,true);Add_Fixture(45,30,49,false);Add_Fixture(55,30,40,true);Add_Fixture(40,30,55,false);Add_Fixture(44,30,41,true);Add_Fixture(41,30,44,false);Add_Fixture(34,31,39,true);Add_Fixture(39,31,34,false);Add_Fixture(36,31,44,true);Add_Fixture(44,31,36,false);Add_Fixture(48,31,55,true);Add_Fixture(55,31,48,false);Add_Fixture(45,31,42,true);Add_Fixture(42,31,45,false);Add_Fixture(52,31,38,true);Add_Fixture(38,31,52,false);Add_Fixture(53,31,33,true);Add_Fixture(33,31,53,false);Add_Fixture(40,31,49,true);Add_Fixture(49,31,40,false);Add_Fixture(41,31,54,true);Add_Fixture(54,31,41,false);Add_Fixture(43,31,47,true);Add_Fixture(47,31,43,false);Add_Fixture(51,31,46,true);Add_Fixture(46,31,51,false);Add_Fixture(38,32,41,true);Add_Fixture(41,32,38,false);Add_Fixture(44,32,53,true);Add_Fixture(53,32,44,false);Add_Fixture(54,32,40,true);Add_Fixture(40,32,54,false);Add_Fixture(47,32,48,true);Add_Fixture(48,32,47,false);Add_Fixture(46,32,52,true);Add_Fixture(52,32,46,false);Add_Fixture(42,32,34,true);Add_Fixture(34,32,42,false);Add_Fixture(55,32,45,true);Add_Fixture(45,32,55,false);Add_Fixture(33,32,43,true);Add_Fixture(43,32,33,false);Add_Fixture(39,32,51,true);Add_Fixture(51,32,39,false);Add_Fixture(49,32,36,true);Add_Fixture(36,32,49,false);Add_Fixture(40,33,47,true);Add_Fixture(47,33,40,false);Add_Fixture(52,33,33,true);Add_Fixture(33,33,52,false);Add_Fixture(34,33,46,true);Add_Fixture(46,33,34,false);Add_Fixture(51,33,44,true);Add_Fixture(44,33,51,false);Add_Fixture(36,33,42,true);Add_Fixture(42,33,36,false);Add_Fixture(41,33,39,true);Add_Fixture(39,33,41,false);Add_Fixture(43,33,49,true);Add_Fixture(49,33,43,false);Add_Fixture(48,33,54,true);Add_Fixture(54,33,48,false);Add_Fixture(53,33,55,true);Add_Fixture(55,33,53,false);Add_Fixture(45,33,38,true);Add_Fixture(38,33,45,false);Add_Fixture(54,34,43,true);Add_Fixture(43,34,54,false);Add_Fixture(49,34,53,true);Add_Fixture(53,34,49,false);Add_Fixture(47,34,52,true);Add_Fixture(52,34,47,false);Add_Fixture(33,34,51,true);Add_Fixture(51,34,33,false);Add_Fixture(39,34,45,true);Add_Fixture(45,34,39,false);Add_Fixture(42,34,41,true);Add_Fixture(41,34,42,false);Add_Fixture(55,34,36,true);Add_Fixture(36,34,55,false);Add_Fixture(46,34,40,true);Add_Fixture(40,34,46,false);Add_Fixture(38,34,48,true);Add_Fixture(48,34,38,false);Add_Fixture(44,34,34,true);Add_Fixture(34,34,44,false);Add_Fixture(44,35,40,true);Add_Fixture(40,35,44,false);Add_Fixture(33,35,39,true);Add_Fixture(39,35,33,false);Add_Fixture(45,35,46,true);Add_Fixture(46,35,45,false);Add_Fixture(34,35,47,true);Add_Fixture(47,35,34,false);Add_Fixture(52,35,43,true);Add_Fixture(43,35,52,false);Add_Fixture(41,35,51,true);Add_Fixture(51,35,41,false);Add_Fixture(38,35,55,true);Add_Fixture(55,35,38,false);Add_Fixture(53,35,48,true);Add_Fixture(48,35,53,false);Add_Fixture(42,35,49,true);Add_Fixture(49,35,42,false);Add_Fixture(36,35,54,true);Add_Fixture(54,35,36,false);Add_Fixture(39,36,53,true);Add_Fixture(53,36,39,false);Add_Fixture(48,36,36,true);Add_Fixture(36,36,48,false);Add_Fixture(51,36,45,true);Add_Fixture(45,36,51,false);Add_Fixture(46,36,33,true);Add_Fixture(33,36,46,false);Add_Fixture(55,36,52,true);Add_Fixture(52,36,55,false);Add_Fixture(40,36,41,true);Add_Fixture(41,36,40,false);Add_Fixture(49,36,34,true);Add_Fixture(34,36,49,false);Add_Fixture(54,36,42,true);Add_Fixture(42,36,54,false);Add_Fixture(43,36,44,true);Add_Fixture(44,36,43,false);Add_Fixture(47,36,38,true);Add_Fixture(38,36,47,false);Add_Fixture(45,37,43,true);Add_Fixture(43,37,45,false);Add_Fixture(36,37,51,true);Add_Fixture(51,37,36,false);Add_Fixture(33,37,54,true);Add_Fixture(54,37,33,false);Add_Fixture(41,37,47,true);Add_Fixture(47,37,41,false);Add_Fixture(52,37,40,true);Add_Fixture(40,37,52,false);Add_Fixture(53,37,46,true);Add_Fixture(46,37,53,false);Add_Fixture(34,37,48,true);Add_Fixture(48,37,34,false);Add_Fixture(38,37,49,true);Add_Fixture(49,37,38,false);Add_Fixture(42,37,39,true);Add_Fixture(39,37,42,false);Add_Fixture(44,37,55,true);Add_Fixture(55,37,44,false);Add_Fixture(47,38,44,true);Add_Fixture(44,38,47,false);Add_Fixture(54,38,34,true);Add_Fixture(34,38,54,false);Add_Fixture(43,38,53,true);Add_Fixture(53,38,43,false);Add_Fixture(40,38,45,true);Add_Fixture(45,38,40,false);Add_Fixture(49,38,33,true);Add_Fixture(33,38,49,false);Add_Fixture(48,38,41,true);Add_Fixture(41,38,48,false);Add_Fixture(39,38,36,true);Add_Fixture(36,38,39,false);Add_Fixture(46,38,38,true);Add_Fixture(38,38,46,false);Add_Fixture(51,38,52,true);Add_Fixture(52,38,51,false);Add_Fixture(55,38,42,true);Add_Fixture(42,38,55,false);Add_Player(233,"Joe","Hart","1",43,"6.8");Add_Player(298,"Petr","Cech","1",39,"6.8");Add_Player(406,"Jose","Reina","1",42,"6.4");Add_Player(680,"David","De Gea","1",44,"6.2");Add_Player(582,"Wojciech","Szczesny","1",33,"5.9");Add_Player(32,"Brad","Friedel","1",48,"5.7");Add_Player(482,"Tim","Howard","1",40,"5.4");Add_Player(783,"Michel","Vorm","1",55,"5.3");Add_Player(196,"Manuel","Almunia","1",33,"5.3");Add_Player(312,"Lukasz","Fabianski","1",33,"5.3");Add_Player(379,"Heurelho","Gomes","1",48,"5.1");Add_Player(44,"Tim","Krul","1",45,"5");Add_Player(806,"Costel","Pantilimon","1",43,"5");Add_Player(333,"Mark","Schwarzer","1",41,"4.8");Add_Player(418,"Ben","Foster","1",49,"4.8");Add_Player(761,"Alexander","Doni","1",42,"4.8");Add_Player(408,"Tomasz","Kuszczak","1",44,"4.7");Add_Player(99,"Shay","Given","1",34,"4.7");Add_Player(46,"Jussi","Jaaskelainen","1",38,"4.7");Add_Player(61,"Paul","Robinson","1",36,"4.6");Add_Player(372,"Wayne","Hennessey","1",52,"4.6");Add_Player(354,"Peter","Gulacsi","1",42,"4.5");Add_Player(812,"Neil","Etheridge","1",41,"4.5");Add_Player(829,"Ole","Soderberg","1",45,"4.5");Add_Player(587,"Lee","Nicholls","1",51,"4.5");Add_Player(851,"Rob","Elliot","1",45,"4.5");Add_Player(187,"Ben","Amos","1",44,"4.5");Add_Player(577,"Neil","Etheridge","1",41,"4.5");Add_Player(510,"Trevor","Carson","1",47,"4.5");Add_Player(317,"David","Stockdale","1",41,"4.5");Add_Player(501,"Boaz","Myhill","1",49,"4.5");Add_Player(141,"Michael","Pollitt","1",51,"4.5");Add_Player(274,"Asmir","Begovic","1",46,"4.5");Add_Player(39,"Ole","Soderberg","1",45,"4.5");Add_Player(814,"Michael","Pollitt","1",51,"4.5");Add_Player(154,"Ali","Al Habsi","1",51,"4.5");Add_Player(400,"Steve","Harper","1",45,"4.4");Add_Player(708,"Patrick","Kenny","1",53,"4.4");Add_Player(102,"Thomas","Sorensen","1",46,"4.4");Add_Player(431,"Bradley","Guzan","1",34,"4.4");Add_Player(627,"Anders","Lindegaard","1",44,"4.4");Add_Player(397,"Carlo","Cudicini","1",48,"4.3");Add_Player(76,"Stuart","Taylor","1",43,"4.3");Add_Player(766,"Csaba","Somogyi","1",41,"4.3");Add_Player(245,"Chris","Kirkland","1",51,"4.3");Add_Player(370,"Simon","Mignolet","1",47,"4.3");Add_Player(56,"Craig","Gordon","1",47,"4.3");Add_Player(67,"Ross","Turnbull","1",39,"4.2");Add_Player(800,"Fraser","Forster","1",45,"4.2");Add_Player(732,"Keiren","Westwood","1",47,"4.2");Add_Player(684,"John","Ruddy","1",54,"4.2");Add_Player(735,"Yves","Ma-Kalambay","1",55,"4");Add_Player(201,"Marton","Fulop","1",49,"4");Add_Player(709,"Radek","Cerny","1",53,"4");Add_Player(882,"Jed","Steer","1",54,"4");Add_Player(781,"Marton","Fulop","1",49,"4");Add_Player(863,"Elvijs","Putnins","1",53,"4");Add_Player(472,"Ryan","Allsop","1",49,"4");Add_Player(857,"Jamal","Blackman","1",39,"4");Add_Player(870,"Jake","Kean","1",36,"4");Add_Player(879,"Jay","Lynch","1",38,"4");Add_Player(168,"Mark","Bunn","1",36,"4");Add_Player(847,"Gerhard","Tremmel","1",55,"4");Add_Player(685,"Declan","Rudd","1",54,"4");Add_Player(575,"Rob","Lainton","1",38,"4");Add_Player(803,"Brian","Murphy","1",53,"4");Add_Player(497,"Jan","Mucha","1",40,"3.9");Add_Player(615,"Andy","Marshall","1",34,"3.9");Add_Player(297,"Henrique","Hilario","1",39,"3.9");Add_Player(757,"Dorus","De Vries","1",52,"3.9");Add_Player(762,"Jose","Moreira","1",55,"3.9");Add_Player(488,"Adam","Bogdan","1",38,"3.9");Add_Player(325,"Nemanja","Vidic","2",44,"7.7");Add_Player(250,"Leighton","Baines","2",40,"7.7");Add_Player(320,"John","Terry","2",39,"7.4");Add_Player(377,"Patrice","Evra","2",44,"7.2");Add_Player(200,"Ashley","Cole","2",39,"7.1");Add_Player(80,"Glen","Johnson","2",42,"6.8");Add_Player(474,"Thomas","Vermaelen","2",33,"6.7");Add_Player(473,"Branislav","Ivanovic","2",39,"6.6");Add_Player(81,"Vincent","Kompany","2",43,"6.6");Add_Player(132,"Micah","Richards","2",43,"6.4");Add_Player(246,"Rio","Ferdinand","2",44,"6.4");Add_Player(631,"Marinho","David Luiz","2",39,"6.3");Add_Player(230,"Benoit","Assou-Ekotto","2",48,"6.2");Add_Player(341,"Phil","Jones","2",44,"6.2");Add_Player(218,"Martin","Skrtel","2",42,"6.2");Add_Player(220,"Joleon","Lescott","2",43,"6.2");Add_Player(235,"Bacary","Sagna","2",33,"6.1");Add_Player(495,"Aleksandar","Kolarov","2",43,"6.1");Add_Player(21,"Kyle","Walker","2",48,"6.1");Add_Player(267,"Brede","Hangeland","2",41,"6");Add_Player(189,"Kolo","Toure","2",43,"6");Add_Player(240,"Daniel","Agger","2",42,"5.9");Add_Player(247,"Sanchez","Jose Enrique","2",42,"5.9");Add_Player(34,"Laurent","Koscielny","2",33,"5.8");Add_Player(839,"Andre","Santos","2",33,"5.8");Add_Player(121,"Johan","Djourou","2",33,"5.8");Add_Player(172,"Jamie","Carragher","2",42,"5.7");Add_Player(838,"Per","Mertesacker","2",33,"5.7");Add_Player(138,"Pablo","Zabaleta","2",43,"5.7");Add_Player(679,"John Arne","Riise","2",41,"5.7");Add_Player(194,"Robert","Huth","2",46,"5.6");Add_Player(480,"Gael","Clichy","2",43,"5.6");Add_Player(391,"Jose","Bosingwa","2",39,"5.5");Add_Player(457,"Jerome","Boateng","2",43,"5.5");Add_Player(244,"Younes","Kaboul","2",48,"5.5");Add_Player(816,"Ignasi","Miquel","2",33,"5.5");Add_Player(825,"Armand","Traore","2",33,"5.5");Add_Player(114,"Armand","Traore","2",53,"5.4");Add_Player(652,"Ignasi","Miquel","2",33,"5.4");Add_Player(227,"Rafael","Da Silva","2",44,"5.4");Add_Player(299,"Christopher","Samba","2",36,"5.4");Add_Player(430,"","Alex","2",39,"5.4");Add_Player(801,"Carl","Jenkinson","2",33,"5.4");Add_Player(115,"Vedran","Corluka","2",48,"5.3");Add_Player(417,"Ryan","Taylor","2",45,"5.3");Add_Player(117,"James","Collins","2",34,"5.3");Add_Player(547,"Sebastien","Squillaci","2",33,"5.3");Add_Player(120,"Chris","Smalling","2",44,"5.3");Add_Player(252,"Phil","Jagielka","2",40,"5.3");Add_Player(439,"Richard","Dunne","2",34,"5.2");Add_Player(426,"Johnny","Heitinga","2",40,"5.2");Add_Player(365,"Kieran","Gibbs","2",33,"5.2");Add_Player(106,"Michael","Dawson","2",48,"5.2");Add_Player(500,"Fabio","Aurelio","2",42,"5.2");Add_Player(460,"Martin","Kelly","2",42,"5.2");Add_Player(197,"Gary","Cahill","2",39,"5.2");Add_Player(248,"Ryan","Shawcross","2",46,"5.1");Add_Player(394,"Sylvain","Distin","2",40,"5.1");Add_Player(736,"Ashley","Williams","2",55,"5.1");Add_Player(584,"Shkodran","Mustafi","2",40,"5");Add_Player(286,"Fabricio","Coloccini","2",45,"5");Add_Player(884,"Karim","Rekik","2",43,"5");Add_Player(570,"Carlos","Salcido","2",41,"5");Add_Player(458,"John","O'Shea","2",47,"5");Add_Player(902,"Bongani","Khumalo","2",48,"5");Add_Player(842,"Sebastian","Coates","2",42,"4.9");Add_Player(307,"Alan","Hutton","2",34,"4.9");Add_Player(342,"Sotirios","Kyrgiakos","2",47,"4.9");Add_Player(481,"Carlos","Cuellar","2",34,"4.9");Add_Player(237,"Stephen","Warnock","2",34,"4.9");Add_Player(33,"Luke","Young","2",53,"4.9");Add_Player(322,"Phillip","Bardsley","2",47,"4.8");Add_Player(156,"Chris","Baird","2",41,"4.8");Add_Player(420,"Ledley","King","2",48,"4.8");Add_Player(369,"Ryan","Nelsen","2",48,"4.8");Add_Player(585,"Shane","Duffy","2",40,"4.8");Add_Player(835,"Zdenek","Grygera","2",41,"4.8");Add_Player(540,"William","Gallas","2",48,"4.7");Add_Player(142,"Scott","Dann","2",36,"4.7");Add_Player(176,"Ciaran","Clark","2",34,"4.7");Add_Player(88,"Paulo","Ferreira","2",39,"4.6");Add_Player(393,"Jonathan","Evans","2",44,"4.6");Add_Player(63,"Roger","Johnson","2",52,"4.6");Add_Player(275,"Nedum","Onuoha","2",53,"4.6");Add_Player(161,"Steven","Taylor","2",45,"4.6");Add_Player(361,"Tony","Hibbert","2",40,"4.6");Add_Player(767,"Stefan","Savic","2",43,"4.5");Add_Player(876,"Nathaniel","Chalobah","2",39,"4.5");Add_Player(66,"Wayne","Bridge","2",47,"4.5");Add_Player(281,"Stephen","Ward","2",52,"4.5");Add_Player(872,"Sam","Hutchinson","2",39,"4.5");Add_Player(508,"Nicky","Shorey","2",49,"4.5");Add_Player(866,"Ezekiel","Fryers","2",44,"4.5");Add_Player(737,"Neil","Taylor","2",55,"4.5");Add_Player(378,"Danny","Simpson","2",45,"4.5");Add_Player(413,"Jonas","Olsson","2",49,"4.5");Add_Player(329,"Aaron","Hughes","2",41,"4.5");Add_Player(711,"Clint","Hill","2",53,"4.5");Add_Player(886,"Taye","Taiwo","2",53,"4.5");Add_Player(284,"Gary","Caldwell","2",51,"4.5");Add_Player(300,"Liam","Ridgewell","2",49,"4.5");Add_Player(797,"Bruno","Ribeiro","2",36,"4.5");Add_Player(780,"Matthew","Upson","2",46,"4.5");Add_Player(741,"Angel","Rangel","2",55,"4.4");Add_Player(504,"Ronnie","Stam","2",51,"4.4");Add_Player(48,"Steve","Gohouri","2",51,"4.4");Add_Player(349,"Kyle","Naughton","2",54,"4.4");Add_Player(409,"Gabriel","Tamas","2",49,"4.4");Add_Player(663,"Ryan","Bertrand","2",39,"4.4");Add_Player(127,"Christophe","Berra","2",52,"4.4");Add_Player(662,"John","Flanagan","2",42,"4.4");Add_Player(435,"Ronald","Zubar","2",52,"4.4");Add_Player(763,"Tyrone","Mears","2",38,"4.4");Add_Player(72,"Danny","Collins","2",46,"4.4");Add_Player(283,"Michel","Salgado","2",36,"4.4");Add_Player(338,"Wes","Brown","2",47,"4.4");Add_Player(62,"Anton","Ferdinand","2",53,"4.4");Add_Player(512,"Patrick","Van Aanholt","2",51,"4.4");Add_Player(319,"Gael","Givet","2",36,"4.4");Add_Player(221,"Samuel","Ricketts","2",38,"4.4");Add_Player(755,"Billy","Jones","2",49,"4.4");Add_Player(331,"Danny","Higginbotham","2",46,"4.4");Add_Player(624,"David","Wheater","2",38,"4.4");Add_Player(229,"Richard","Stearman","2",52,"4.4");Add_Player(490,"Antolin","Alcaraz","2",51,"4.3");Add_Player(29,"Gonzalo","Jara Reyes","2",49,"4.3");Add_Player(713,"Kaspars","Gorkss","2",53,"4.3");Add_Player(386,"Kevin","Foley","2",52,"4.3");Add_Player(258,"Maynor","Figueroa","2",51,"4.3");Add_Player(494,"Danny","Wilson","2",42,"4.3");Add_Player(686,"Russell","Martin","2",54,"4.3");Add_Player(483,"Philippe","Senderos","2",41,"4.3");Add_Player(769,"Craig","Dawson","2",49,"4.3");Add_Player(190,"Sebastien","Bassong","2",52,"4.3");Add_Player(8,"Emmerson","Boyce","2",51,"4.3");Add_Player(340,"Paul","Robinson","2",38,"4.2");Add_Player(261,"Jonathan","Woodgate","2",46,"4.2");Add_Player(144,"Zat","Knight","2",38,"4.2");Add_Player(296,"Fabio","Da Silva","2",44,"4.2");Add_Player(271,"Mike","Williamson","2",45,"4.2");Add_Player(844,"Davide","Santon","2",45,"4.2");Add_Player(343,"Michael","Turner","2",47,"4.2");Add_Player(173,"Titus","Bramble","2",47,"4.2");Add_Player(461,"Jody","Craddock","2",52,"4.2");Add_Player(20,"George","Elokobi","2",52,"4.2");Add_Player(477,"Habib","Beye","2",34,"4.2");Add_Player(207,"Gretar Rafn","Steinsson","2",38,"4.2");Add_Player(339,"Matthew","Upson","2",46,"4.2");Add_Player(756,"Gareth","McAuley","2",49,"4.1");Add_Player(123,"Abdoulaye","Meite","2",49,"4");Add_Player(543,"Rafik","Halliche","2",41,"4");Add_Player(24,"Daniel","Ayala","2",54,"4");Add_Player(805,"Bruno","Perone","2",53,"4");Add_Player(255,"Ibanez","Pablo","2",49,"4");Add_Player(856,"Vangells","Moras","2",55,"4");Add_Player(869,"Derrick","Williams","2",34,"4");Add_Player(715,"Peter","Ramage","2",53,"4");Add_Player(689,"Leon","Barnett","2",54,"4");Add_Player(799,"Adam","Henley","2",36,"4");Add_Player(740,"Albert","Serran","2",55,"4");Add_Player(287,"Joe","Mattock","2",49,"4");Add_Player(1,"Shane","Lowry","2",34,"4");Add_Player(824,"Joe","Riley","2",38,"4");Add_Player(817,"Daniel","Ayala","2",54,"4");Add_Player(616,"James","Hurst","2",49,"4");Add_Player(516,"Eric","Lichaj","2",34,"4");Add_Player(739,"Garry","Monk","2",55,"4");Add_Player(832,"Federico","Bessone","2",55,"4");Add_Player(888,"Tim","Ream","2",38,"4");Add_Player(600,"Ryan","Shotton","2",46,"4");Add_Player(822,"Michael","Harriman","2",53,"4");Add_Player(205,"James","Perch","2",45,"4");Add_Player(693,"Jens","Berthel Askou","2",54,"4");Add_Player(167,"Steven","Mouyokolo","2",52,"4");Add_Player(833,"Darnel","Situ","2",55,"4");Add_Player(599,"Matt","Doherty","2",52,"4");Add_Player(798,"Myles","Anderson","2",36,"4");Add_Player(395,"Marek","Cech","2",49,"4");Add_Player(691,"Steven","Smith","2",54,"4");Add_Player(122,"Stephen","Kelly","2",41,"4");Add_Player(667,"Louis","Laing","2",47,"4");Add_Player(742,"Steven","Caulker","2",55,"4");Add_Player(215,"Gianni","Zuiverloon","2",49,"4");Add_Player(813,"Louis","Laing","2",47,"4");Add_Player(716,"Danny","Shittu","2",53,"4");Add_Player(447,"Daniel","Gabbidon","2",53,"4");Add_Player(690,"Elliott","Ward","2",54,"3.9");Add_Player(614,"Adrian","Lopez","2",51,"3.9");Add_Player(714,"Matthew","Connolly","2",53,"3.9");Add_Player(505,"Marcos","Angeleri","2",47,"3.9");Add_Player(688,"Zak","Whitbread","2",54,"3.9");Add_Player(687,"Adam","Drury","2",54,"3.9");Add_Player(548,"Matthew","Briggs","2",41,"3.9");Add_Player(712,"Fitz","Hall","2",53,"3.9");Add_Player(534,"Josh","Morris","2",36,"3.9");Add_Player(467,"Grant","Hanley","2",36,"3.9");Add_Player(692,"Marc","Tierney","2",54,"3.9");Add_Player(621,"Nathan","Baker","2",34,"3.9");Add_Player(502,"Marcos","Alonso","2",38,"3.9");Add_Player(462,"Andy","Wilkinson","2",46,"3.9");Add_Player(710,"Bradley","Orr","2",36,"3.9");Add_Player(346,"Dedryk","Boyata","2",38,"3.9");Add_Player(661,"Jack","Robinson","2",42,"3.8");Add_Player(157,"Matthew","Kilgallon","2",47,"3.8");Add_Player(452,"Ritchie","De Laet","2",44,"3.8");Add_Player(738,"Alan","Tate","2",55,"3.8");Add_Player(382,"Luis","Nani","3",44,"9.9");Add_Player(360,"Gareth","Bale","3",48,"9.7");Add_Player(265,"Ashley","Young","3",44,"9.6");Add_Player(809,"Juan","Mata","3",39,"9.6");Add_Player(103,"Florent","Malouda","3",39,"9.6");Add_Player(574,"Rafael","Van der Vaart","3",48,"9.5");Add_Player(50,"Dirk","Kuyt","3",42,"9.4");Add_Player(150,"Clint","Dempsey","3",41,"9.1");Add_Player(415,"Samir","Nasri","3",43,"9.1");Add_Player(273,"Theo","Walcott","3",33,"8.8");Add_Player(216,"Tim","Cahill","3",40,"8.5");Add_Player(464,"Charlie","Adam","3",42,"8.5");Add_Player(124,"Andrey","Arshavin","3",33,"8.4");Add_Player(228,"Antonio","Valencia","3",44,"8.3");Add_Player(203,"Luka","Modric","3",48,"8");Add_Player(352,"Mikel","Arteta","3",33,"7.9");Add_Player(113,"Stewart","Downing","3",42,"7.7");Add_Player(350,"Gnegneri","Toure Yaya","3",43,"7.5");Add_Player(419,"Darren","Fletcher","3",44,"7.4");Add_Player(84,"Vassiriki","Diaby","3",33,"7.4");Add_Player(637,"Stephane","Sessegnon","3",47,"7.3");Add_Player(569,"Raul","Meireles","3",39,"7.2");Add_Player(151,"Aaron","Lennon","3",48,"7.2");Add_Player(179,"James","Milner","3",43,"7.1");Add_Player(373,"Steven","Pienaar","3",40,"7");Add_Player(78,"Seamus","Coleman","3",40,"7");Add_Player(175,"Rodriguez","Maxi","3",42,"7");Add_Player(871,"Landon","Donovan","3",40,"7");Add_Player(470,"Adam","Johnson","3",43,"7");Add_Player(278,"Michael","Essien","3",39,"6.9");Add_Player(204,"Alberto","Aquilani","3",42,"6.9");Add_Player(291,"Yossi","Benayoun","3",33,"6.9");Add_Player(524,"","Ramires","3",39,"6.9");Add_Player(177,"Sebastian","Larsson","3",47,"6.8");Add_Player(292,"Ryan","Giggs","3",44,"6.8");Add_Player(155,"Salomon","Kalou","3",39,"6.7");Add_Player(450,"Ji-Sung","Park","3",44,"6.7");Add_Player(416,"Charles","N'Zogbia","3",34,"6.6");Add_Player(746,"Scott","Sinclair","3",55,"6.6");Add_Player(91,"Leon","Osman","3",40,"6.6");Add_Player(139,"Gareth","Barry","3",43,"6.6");Add_Player(264,"Matthew","Etherington","3",46,"6.5");Add_Player(279,"Yury","Zhirkov","3",39,"6.5");Add_Player(530,"Jonathan","Walters","3",46,"6.5");Add_Player(51,"Scott","Parker","3",48,"6.5");Add_Player(900,"David","Pizarro","3",43,"6.4");Add_Player(104,"Jack","Wilshere","3",33,"6.2");Add_Player(313,"Aaron","Ramsey","3",33,"6.2");Add_Player(3,"David","Dunn","3",36,"6.2");Add_Player(159,"Morten Gamst","Pedersen","3",36,"6.2");Add_Player(75,"Michael","Carrick","3",44,"6.2");Add_Player(295,"Danny","Murphy","3",41,"6.1");Add_Player(31,"Marouane","Fellaini","3",40,"6.1");Add_Player(294,"Damien","Duff","3",41,"6.1");Add_Player(211,"Jonas","Gutierrez","3",45,"6");Add_Player(427,"Jordan","Henderson","3",42,"6");Add_Player(166,"Brett","Emerton","3",36,"6");Add_Player(778,"Alex","Oxlade-Chamberlain","3",33,"6");Add_Player(96,"Chung-Yong","Lee","3",38,"5.9");Add_Player(195,"Youssouf","Mulumbu","3",49,"5.9");Add_Player(89,"Marc","Albrighton","3",34,"5.9");Add_Player(492,"Joe","Cole","3",42,"5.9");Add_Player(180,"Alex","Song","3",33,"5.9");Add_Player(443,"Shaun","Wright-Phillips","3",53,"5.9");Add_Player(224,"Stiliyan","Petrov","3",34,"5.8");Add_Player(681,"Yohan","Cabaye","3",45,"5.8");Add_Player(411,"Diniyar","Bilyaletdinov","3",40,"5.8");Add_Player(718,"Adel","Taarabt","3",53,"5.8");Add_Player(253,"Stephen","Hunt","3",52,"5.8");Add_Player(445,"Joey","Barton","3",53,"5.8");Add_Player(433,"Chris","Brunt","3",49,"5.7");Add_Player(289,"Kieran","Richardson","3",47,"5.7");Add_Player(466,"Matthew","Jarvis","3",52,"5.7");Add_Player(45,"Niko","Kranjcar","3",48,"5.7");Add_Player(260,"Tomas","Rosicky","3",33,"5.7");Add_Player(845,"Simon","Vukcevic","3",36,"5.7");Add_Player(269,"Oliveira","Anderson","3",44,"5.7");Add_Player(363,"Craig","Gardner","3",47,"5.6");Add_Player(146,"Tom","Huddlestone","3",48,"5.6");Add_Player(565,"Jermaine","Pennant","3",46,"5.6");Add_Player(223,"Henri","Lansbury","3",33,"5.5");Add_Player(463,"Neves","Denilson","3",33,"5.5");Add_Player(849,"Iago","Falque","3",48,"5.5");Add_Player(57,"Jamie","O'Hara","3",52,"5.5");Add_Player(878,"Jessie","Lingard","3",44,"5.5");Add_Player(43,"Steed","Malbranque","3",47,"5.5");Add_Player(2,"Matthew","Taylor","3",38,"5.5");Add_Player(873,"Paul","Pogba","3",44,"5.5");Add_Player(52,"Emmanuel","Eboue","3",33,"5.5");Add_Player(815,"Henri","Lansbury","3",33,"5.5");Add_Player(826,"Francis","Coquelin","3",33,"5.5");Add_Player(875,"Larnell","Cole","3",44,"5.5");Add_Player(827,"Oguzhan","Ozyakup","3",33,"5.5");Add_Player(568,"Hatem","Ben Arfa","3",45,"5.4");Add_Player(217,"Dos Santos","Giovani","3",48,"5.4");Add_Player(335,"Graham","Dorrans","3",49,"5.4");Add_Player(626,"Jean","Makoun","3",34,"5.4");Add_Player(243,"Michael","Kightly","3",52,"5.4");Add_Player(434,"Stephen","Ireland","3",34,"5.4");Add_Player(272,"Jerome","Thomas","3",49,"5.4");Add_Player(79,"Zoltan","Gera","3",49,"5.4");Add_Player(834,"Roysten","Drenthe","3",40,"5.4");Add_Player(304,"Martin","Olsson","3",36,"5.3");Add_Player(424,"Tuncay","Sanli","3",38,"5.3");Add_Player(315,"James","Morrison","3",49,"5.3");Add_Player(764,"Chris","Eagles","3",38,"5.3");Add_Player(351,"Paul","Scholes","3",44,"5.3");Add_Player(259,"Simon","Davies","3",41,"5.3");Add_Player(454,"Stuart","Holden","3",38,"5.3");Add_Player(779,"Radosav","Petrovic","3",36,"5.3");Add_Player(73,"Darron","Gibson","3",40,"5.3");Add_Player(185,"Steve","Sidwell","3",41,"5.2");Add_Player(42,"Jermaine","Jenas","3",34,"5.2");Add_Player(388,"Nenad","Milijas","3",52,"5.2");Add_Player(554,"Jay","Spearing","3",42,"5.2");Add_Player(703,"Anthony","Pilkington","3",54,"5.1");Add_Player(802,"Emmanuel","Frimpong","3",52,"5.1");Add_Player(558,"Paul","Scharner","3",49,"5.1");Add_Player(249,"Martin","Petrov","3",38,"5.1");Add_Player(401,"Gael","Kakuta","3",38,"5.1");Add_Player(571,"Tom","Cleverley","3",44,"5.1");Add_Player(129,"Jack","Rodwell","3",40,"5.1");Add_Player(678,"Darren","Pratley","3",38,"5.1");Add_Player(396,"Fabian","Delph","3",34,"5.1");Add_Player(819,"Jake","Livermore","3",48,"5");Add_Player(696,"Wesley","Hoolahan","3",54,"5");Add_Player(41,"Rory","Delap","3",46,"5");Add_Player(903,"Massimo","Luongo","3",48,"5");Add_Player(164,"David","Vaughan","3",47,"5");Add_Player(383,"Steven","Nzonzi","3",36,"5");Add_Player(720,"Alejandro","Faurlin","3",53,"5");Add_Player(897,"Marcus","Olsson","3",36,"5");Add_Player(226,"Jonathan","Greening","3",41,"5");Add_Player(865,"Ryan","Fredericks","3",48,"5");Add_Player(71,"Danny","Pugh","3",46,"5");Add_Player(188,"Giles","Barnes","3",49,"5");Add_Player(219,"Glenn","Whelan","3",46,"5");Add_Player(562,"Jean","Beausejour","3",51,"5");Add_Player(642,"Abdul","Razak","3",43,"5");Add_Player(880,"Gylfi","Sigurdsson","3",55,"5");Add_Player(854,"Thomas","Carroll","3",48,"5");Add_Player(423,"Adlene","Guedioura","3",52,"5");Add_Player(820,"Andros","Townsend","3",48,"5");Add_Player(567,"Marc","Wilson","3",46,"5");Add_Player(131,"James","McCarthy","3",51,"5");Add_Player(883,"Nico","Yennaris","3",33,"4.9");Add_Player(170,"David","Edwards","3",52,"4.9");Add_Player(636,"Mauro","Formica","3",36,"4.9");Add_Player(135,"Jack","Colback","3",47,"4.9");Add_Player(773,"Tom","Soares","3",46,"4.9");Add_Player(375,"Raniere","Sandro","3",48,"4.9");Add_Player(777,"Ryo","Miyaichi","3",38,"4.9");Add_Player(890,"Lucas","Piazon","3",39,"4.9");Add_Player(421,"Danny","Guthrie","3",45,"4.9");Add_Player(541,"Somen","Tchoyi","3",49,"4.9");Add_Player(538,"Jake","Livermore","3",48,"4.9");Add_Player(625,"Adam","Hammill","3",52,"4.8");Add_Player(432,"Mark","Davies","3",38,"4.8");Add_Player(449,"Ben","Watson","3",51,"4.8");Add_Player(837,"Albert","Crusat","3",51,"4.8");Add_Player(232,"Steven","Reid","3",49,"4.8");Add_Player(638,"Jason","Puncheon","3",53,"4.8");Add_Player(336,"Mohamed","Diame","3",51,"4.8");Add_Player(588,"Jonjo","Shelvey","3",42,"4.8");Add_Player(745,"Nathan","Dyer","3",55,"4.8");Add_Player(148,"Victor","Moses","3",51,"4.8");Add_Player(337,"Gabriel","Obertan","3",45,"4.8");Add_Player(429,"Danny","Rose","3",48,"4.8");Add_Player(404,"Wayne","Routledge","3",55,"4.8");Add_Player(4,"Owen","Hargreaves","3",43,"4.8");Add_Player(848,"James","McClean","3",47,"4.8");Add_Player(768,"Elliott","Bennett","3",54,"4.8");Add_Player(496,"Dan","Gosling","3",45,"4.8");Add_Player(760,"Pajtim","Kasami","3",41,"4.7");Add_Player(347,"Nigel","De Jong","3",43,"4.7");Add_Player(747,"Joe","Allen","3",55,"4.7");Add_Player(392,"Dean","Whitehead","3",46,"4.7");Add_Player(694,"Andrew","Crofts","3",54,"4.7");Add_Player(367,"Leiva","Lucas","3",42,"4.7");Add_Player(212,"Wilson","Palacios","3",46,"4.7");Add_Player(158,"Jordi","Gomez","3",51,"4.7");Add_Player(344,"Lee","Cattermole","3",47,"4.7");Add_Player(169,"Phil","Neville","3",40,"4.7");Add_Player(47,"Dickson","Etuhu","3",41,"4.6");Add_Player(775,"Oriol","Romeu","3",39,"4.6");Add_Player(682,"Sylvain","Marveaux","3",45,"4.6");Add_Player(580,"Josh","McEachran","3",55,"4.6");Add_Player(752,"Stephen","Dobbie","3",55,"4.6");Add_Player(328,"Ahmed","Elmohamady","3",47,"4.6");Add_Player(579,"Ross","Barkley","3",40,"4.6");Add_Player(862,"Anthony","Forde","3",52,"4.5");Add_Player(514,"Michael","Tonge","3",46,"4.5");Add_Player(836,"Shaun","Maloney","3",51,"4.5");Add_Player(602,"Geoffrey","Mujangi Bia","3",52,"4.5");Add_Player(674,"Joshua","Vela","3",38,"4.5");Add_Player(702,"Bradley","Johnson","3",54,"4.5");Add_Player(818,"Diego","Arismendi","3",46,"4.5");Add_Player(877,"Sam","Mantom","3",49,"4.5");Add_Player(895,"Scott","Allan","3",49,"4.5");Add_Player(324,"Diego","Arismendi","3",46,"4.5");Add_Player(808,"Kerim","Frei","3",41,"4.5");Add_Player(701,"Owain","Tudur Jones","3",54,"4.5");Add_Player(119,"Nigel","Reo-Coker","3",38,"4.5");Add_Player(591,"Daniel","Johnson","3",34,"4.5");Add_Player(613,"Jason","Lowe","3",36,"4.5");Add_Player(700,"Anthony","McNamee","3",54,"4.5");Add_Player(852,"Gary","Gardner","3",34,"4.5");Add_Player(751,"Leon","Britton","3",55,"4.5");Add_Player(30,"Keith","Andrews","3",49,"4.5");Add_Player(519,"Christian","Poulsen","3",42,"4.5");Add_Player(772,"Kazenga","LuaLua","3",45,"4.5");Add_Player(590,"Herold","Goulon","3",36,"4.5");Add_Player(859,"Alex","Kacaniklic","3",41,"4.5");Add_Player(744,"Cedric","Van der Gun","3",55,"4.5");Add_Player(38,"Amine","Linganzi","3",36,"4.5");Add_Player(308,"Bjorn Helge","Riise","3",41,"4.5");Add_Player(889,"Ben","Marshall","3",46,"4.5");Add_Player(853,"Lee","Lucas","3",55,"4.5");Add_Player(666,"George","Thorne","3",49,"4.5");Add_Player(867,"Mehdi","Abeid","3",45,"4.5");Add_Player(749,"Mark","Gower","3",55,"4.5");Add_Player(723,"Hogan","Ephraim","3",53,"4.5");Add_Player(892,"Eggert","Jonsson","3",52,"4.5");Add_Player(527,"Haris","Vuckic","3",45,"4.4");Add_Player(722,"Petter Vaagan","Moen","3",53,"4.4");Add_Player(607,"Jordan","Cook","3",47,"4.4");Add_Player(721,"Martin","Rowlands","3",53,"4.4");Add_Player(594,"Chris","Herd","3",34,"4.4");Add_Player(515,"Barry","Bannan","3",34,"4.4");Add_Player(695,"Andrew","Surman","3",54,"4.4");Add_Player(498,"James","McArthur","3",51,"4.4");Add_Player(36,"David","Meyler","3",47,"4.4");Add_Player(719,"Akos","Buzsaky","3",53,"4.4");Add_Player(770,"Adam","Forshaw","3",40,"4.4");Add_Player(453,"","Mikel","3",39,"4.4");Add_Player(699,"Simon","Lappin","3",54,"4.4");Add_Player(750,"Ashley","Richards","3",55,"4.4");Add_Player(550,"Cheik","Tiote","3",45,"4.4");Add_Player(724,"Bruno","Andrade","3",53,"4.4");Add_Player(345,"Fabrice","Muamba","3",38,"4.4");Add_Player(130,"Salif","Diao","3",46,"4.4");Add_Player(698,"Korey","Smith","3",54,"4.4");Add_Player(405,"David","Jones","3",51,"4.4");Add_Player(635,"Michael","Bradley","3",34,"4.4");Add_Player(697,"David","Fox","3",54,"4.4");Add_Player(285,"Karl","Henry","3",52,"4.4");Add_Player(759,"Marcel","Gecov","3",41,"4.3");Add_Player(428,"Vincenzo","Grella","3",36,"4.3");Add_Player(316,"Kieron","Dyer","3",53,"4.3");Add_Player(101,"Alan","Smith","3",45,"4.3");Add_Player(743,"Andrea","Orlandi","3",55,"4.3");Add_Player(717,"Shaun","Derry","3",53,"4.3");Add_Player(95,"Ricardo","Gardner","3",38,"4.3");Add_Player(353,"Hendry","Thomas","3",51,"4.3");Add_Player(748,"Kemy","Agustien","3",55,"4.3");Add_Player(617,"Shane","Ferguson","3",45,"4");Add_Player(12,"Francesc","Fabregas","3",33,"12");Add_Player(53,"Frank","Lampard","3",39,"11");Add_Player(487,"David","Silva","3",43,"10.5");Add_Player(389,"Steven","Gerrard","3",42,"10");Add_Player(310,"Javier","Hernandez","4",44,"9.9");Add_Player(11,"Darren","Bent","4",34,"9.6");Add_Player(628,"Luis","Suarez","4",42,"9.2");Add_Player(356,"Emmanuel","Adebayor","4",48,"9.1");Add_Player(442,"Andrew","Carroll","4",42,"9.1");Add_Player(305,"Dimitar","Berbatov","4",44,"8.9");Add_Player(758,"Yao","Gervinho","4",33,"8.9");Add_Player(256,"Jermain","Defoe","4",48,"8.1");Add_Player(619,"Edin","Dzeko","4",43,"8.1");Add_Player(528,"Mario","Balotelli","4",43,"8");Add_Player(225,"Nicolas","Anelka","4",39,"8");Add_Player(40,"Marouane","Chamakh","4",33,"8");Add_Player(630,"Demba","Ba","4",45,"7.9");Add_Player(560,"Asamoah","Gyan","4",47,"7.8");Add_Player(810,"Romelu","Lukaku","4",39,"7.5");Add_Player(214,"Craig","Bellamy","4",42,"7.5");Add_Player(537,"Peter","Odemwingie","4",49,"7.2");Add_Player(112,"Daniel","Sturridge","4",39,"7.2");Add_Player(887,"Papiss","Cisse","4",45,"7");Add_Player(239,"Louis","Saha","4",48,"6.9");Add_Player(35,"Bobby","Zamora","4",53,"6.8");Add_Player(403,"Gabriel","Agbonlahor","4",34,"6.7");Add_Player(441,"Danny","Welbeck","4",44,"6.6");Add_Player(100,"Roman","Pavlyuchenko","4",48,"6.6");Add_Player(893,"Djibril","Cisse","4",53,"6.4");Add_Player(846,"Chu-Young","Park","4",33,"6.4");Add_Player(898,"Nikica","Jelavic","4",40,"6.4");Add_Player(468,"Jermaine","Beckford","4",40,"6.4");Add_Player(881,"Thierry","Henry","4",33,"6.4");Add_Player(254,"Peter","Crouch","4",46,"6.4");Add_Player(206,"Nicklas","Bendtner","4",47,"6.1");Add_Player(15,"Milan","Jovanovic","4",42,"6");Add_Player(840,"Bryan","Ruiz","4",41,"6");Add_Player(899,"Pavel","Pogrebnyak","4",41,"6");Add_Player(27,"Hugo","Rodallega","4",51,"5.9");Add_Player(358,"Kenwyne","Jones","4",46,"5.9");Add_Player(282,"Michael","Owen","4",44,"5.9");Add_Player(478,"Fraizer","Campbell","4",47,"5.9");Add_Player(380,"Ayegbeni","Yakubu","4",36,"5.8");Add_Player(210,"Steven","Fletcher","4",52,"5.8");Add_Player(355,"Kevin","Doyle","4",52,"5.7");Add_Player(782,"Shane","Long","4",49,"5.7");Add_Player(503,"Ivan","Klasnic","4",38,"5.6");Add_Player(733,"Connor","Wickham","4",47,"5.6");Add_Player(774,"David","Goodwillie","4",36,"5.6");Add_Player(438,"Kevin","Davies","4",38,"5.6");Add_Player(901,"Marvin","Sordell","4",38,"5.5");Add_Player(828,"Gilles","Sunu","4",33,"5.5");Add_Player(823,"Tuncay","Sanli","4",38,"5.5");Add_Player(105,"Nikola","Kalinic","4",36,"5.5");Add_Player(178,"David","Hoilett","4",36,"5.5");Add_Player(731,"Jay","Bothroyd","4",53,"5.5");Add_Player(521,"Joao Alves","Jo","4",43,"5.5");Add_Player(93,"Federico","Macheda","4",53,"5.5");Add_Player(436,"Carlos Alberto","Vela","4",33,"5.5");Add_Player(874,"Will","Keane","4",44,"5.5");Add_Player(10,"Ricardo","Fuller","4",46,"5.4");Add_Player(374,"Cameron","Jerome","4",46,"5.4");Add_Player(143,"David","Ngog","4",38,"5.3");Add_Player(163,"Sylvan","Ebanks-Blake","4",52,"5.3");Add_Player(270,"Jason","Roberts","4",36,"5.3");Add_Player(455,"Emile","Heskey","4",34,"5.3");Add_Player(544,"Marc-Antoine","Fortune","4",49,"5.2");Add_Player(707,"Steve","Morison","4",54,"5.2");Add_Player(531,"Moussa","Dembele","4",41,"5.2");Add_Player(456,"Robbie","Keane","4",34,"5.1");Add_Player(843,"Denis","Stracqualursi","4",40,"5.1");Add_Player(126,"Mame","Diouf","4",44,"5.1");Add_Player(754,"Danny","Graham","4",55,"5");Add_Player(811,"Stefan","Maierhofer","4",52,"5");Add_Player(97,"Victor","Anichebe","4",40,"5");Add_Player(864,"Harry","Kane","4",48,"5");Add_Player(896,"Marcello","Trotta","4",41,"5");Add_Player(726,"Heidar","Helguson","4",53,"5");Add_Player(213,"Peter","Lovenkrands","4",45,"5");Add_Player(110,"Stefan","Maierhofer","4",52,"5");Add_Player(885,"Anthony","Modeste","4",36,"5");Add_Player(891,"Cameron","Lancaster","4",48,"5");Add_Player(841,"Orlando","Sa","4",41,"5");Add_Player(704,"Grant","Holt","4",54,"5");Add_Player(513,"Andreas","Weimann","4",34,"5");Add_Player(855,"Jordan","Slew","4",36,"5");Add_Player(868,"Graham","Burke","4",34,"5");Add_Player(639,"Andros","Townsend","4",48,"5");Add_Player(191,"Shola","Ameobi","4",45,"5");Add_Player(471,"Mamady","Sidibe","4",46,"4.9");Add_Player(555,"DJ","Campbell","4",53,"4.9");Add_Player(727,"Jamie","Mackie","4",53,"4.9");Add_Player(58,"James","McFadden","4",40,"4.9");Add_Player(796,"Nick","Blackman","4",36,"4.9");Add_Player(182,"Nathan","Delfouneso","4",34,"4.8");Add_Player(622,"James","Vaughan","4",54,"4.8");Add_Player(730,"Tommy","Smith","4",53,"4.8");Add_Player(268,"Franco","Di Santo","4",51,"4.8");Add_Player(257,"Simon","Cox","4",49,"4.7");Add_Player(641,"Conor","Sammon","4",51,"4.7");Add_Player(390,"Andrew","Johnson","4",41,"4.7");Add_Player(649,"Ruben","Rochina","4",36,"4.7");Add_Player(489,"Magaye","Gueye","4",40,"4.6");Add_Player(734,"Dong-Won","Ji","4",47,"4.6");Add_Player(705,"Simeon","Jackson","4",54,"4.6");Add_Player(479,"Ishmael","Miller","4",49,"4.5");Add_Player(551,"Callum","McManaman","4",51,"4.5");Add_Player(894,"Angelo","Balanta","4",53,"4.5");Add_Player(850,"Aaron","Wilbraham","4",54,"4.5");Add_Player(821,"Troy","Hewitt","4",53,"4.5");Add_Player(858,"John","Egan","4",47,"4.5");Add_Player(807,"Adam","Blakeman","4",38,"4.5");Add_Player(410,"Sam","Vokes","4",52,"4.5");Add_Player(860,"Conor","McAleny","4",40,"4.5");Add_Player(184,"Leon","Best","4",45,"4.5");Add_Player(861,"Michael","O'Halloran","4",38,"4.5");Add_Player(728,"Patrick","Agyemang","4",53,"4.4");Add_Player(171,"Andrew","Keogh","4",52,"4.4");Add_Player(706,"Chris","Martin","4",54,"4.4");Add_Player(725,"Leon","Clarke","4",53,"4.4");Add_Player(771,"Apostolos","Vellios","4",40,"4.4");Add_Player(804,"Sammy","Ameobi","4",45,"4.4");Add_Player(646,"Ryan","Noble","4",47,"4.3");Add_Player(60,"Luke","Moore","4",55,"4.3");Add_Player(659,"Craig","Lynch","4",47,"4.3");Add_Player(729,"Rob","Hulse","4",53,"4.3");Add_Player(86,"Jose","Baxter","4",40,"4.2");Add_Player(776,"Leroy","Lita","4",55,"4.2");Add_Player(753,"Craig","Beattie","4",55,"4.2");Add_Player(198,"Robbie","Blake","4",38,"4.2");Add_Player(64,"Nile","Ranger","4",45,"4.1");Add_Player(266,"Robin","van Persie","4",33,"13.4");Add_Player(208,"Wayne","Rooney","4",44,"12.1");Add_Player(465,"Carlos","Tevez","4",43,"11.7");Add_Player(765,"Sergio","Aguero","4",43,"11.2");Add_Player(109,"Didier","Drogba","4",39,"10.1");Add_Player(186,"Fernando","Torres","4",39,"10");
var PlayerAutoSuggest = {items: [
{value: "233", name: "Joe Hart (MCY)"},{value: "298", name: "Petr Cech (CHE)"},{value: "406", name: "Jose Reina (LIV)"},{value: "680", name: "David De Gea (MUN)"},{value: "582", name: "Wojciech Szczesny (ARS)"},{value: "32", name: "Brad Friedel (TOT)"},{value: "482", name: "Tim Howard (EVE)"},{value: "783", name: "Michel Vorm (SWA)"},{value: "196", name: "Manuel Almunia (ARS)"},{value: "312", name: "Lukasz Fabianski (ARS)"},{value: "379", name: "Heurelho Gomes (TOT)"},{value: "44", name: "Tim Krul (NEW)"},{value: "806", name: "Costel Pantilimon (MCY)"},{value: "333", name: "Mark Schwarzer (FUL)"},{value: "418", name: "Ben Foster (WBA)"},{value: "761", name: "Alexander Doni (LIV)"},{value: "408", name: "Tomasz Kuszczak (MUN)"},{value: "99", name: "Shay Given (AVL)"},{value: "46", name: "Jussi Jaaskelainen (BOL)"},{value: "61", name: "Paul Robinson (BLA)"},{value: "372", name: "Wayne Hennessey (WOL)"},{value: "354", name: "Peter Gulacsi (LIV)"},{value: "812", name: "Neil Etheridge (FUL)"},{value: "829", name: "Ole Soderberg (NEW)"},{value: "587", name: "Lee Nicholls (WIG)"},{value: "851", name: "Rob Elliot (NEW)"},{value: "187", name: "Ben Amos (MUN)"},{value: "577", name: "Neil Etheridge (FUL)"},{value: "510", name: "Trevor Carson (SUN)"},{value: "317", name: "David Stockdale (FUL)"},{value: "501", name: "Boaz Myhill (WBA)"},{value: "141", name: "Michael Pollitt (WIG)"},{value: "274", name: "Asmir Begovic (STK)"},{value: "39", name: "Ole Soderberg (NEW)"},{value: "814", name: "Michael Pollitt (WIG)"},{value: "154", name: "Ali Al Habsi (WIG)"},{value: "400", name: "Steve Harper (NEW)"},{value: "708", name: "Patrick Kenny (QPR)"},{value: "102", name: "Thomas Sorensen (STK)"},{value: "431", name: "Bradley Guzan (AVL)"},{value: "627", name: "Anders Lindegaard (MUN)"},{value: "397", name: "Carlo Cudicini (TOT)"},{value: "76", name: "Stuart Taylor (MCY)"},{value: "766", name: "Csaba Somogyi (FUL)"},{value: "245", name: "Chris Kirkland (WIG)"},{value: "370", name: "Simon Mignolet (SUN)"},{value: "56", name: "Craig Gordon (SUN)"},{value: "67", name: "Ross Turnbull (CHE)"},{value: "800", name: "Fraser Forster (NEW)"},{value: "732", name: "Keiren Westwood (SUN)"},{value: "684", name: "John Ruddy (NOR)"},{value: "735", name: "Yves Ma-Kalambay (SWA)"},{value: "201", name: "Marton Fulop (WBA)"},{value: "709", name: "Radek Cerny (QPR)"},{value: "882", name: "Jed Steer (NOR)"},{value: "781", name: "Marton Fulop (WBA)"},{value: "863", name: "Elvijs Putnins (QPR)"},{value: "472", name: "Ryan Allsop (WBA)"},{value: "857", name: "Jamal Blackman (CHE)"},{value: "870", name: "Jake Kean (BLA)"},{value: "879", name: "Jay Lynch (BOL)"},{value: "168", name: "Mark Bunn (BLA)"},{value: "847", name: "Gerhard Tremmel (SWA)"},{value: "685", name: "Declan Rudd (NOR)"},{value: "575", name: "Rob Lainton (BOL)"},{value: "803", name: "Brian Murphy (QPR)"},{value: "497", name: "Jan Mucha (EVE)"},{value: "615", name: "Andy Marshall (AVL)"},{value: "297", name: "Henrique Hilario (CHE)"},{value: "757", name: "Dorus De Vries (WOL)"},{value: "762", name: "Jose Moreira (SWA)"},{value: "488", name: "Adam Bogdan (BOL)"},{value: "325", name: "Nemanja Vidic (MUN)"},{value: "250", name: "Leighton Baines (EVE)"},{value: "320", name: "John Terry (CHE)"},{value: "377", name: "Patrice Evra (MUN)"},{value: "200", name: "Ashley Cole (CHE)"},{value: "80", name: "Glen Johnson (LIV)"},{value: "474", name: "Thomas Vermaelen (ARS)"},{value: "473", name: "Branislav Ivanovic (CHE)"},{value: "81", name: "Vincent Kompany (MCY)"},{value: "132", name: "Micah Richards (MCY)"},{value: "246", name: "Rio Ferdinand (MUN)"},{value: "631", name: "Marinho David Luiz (CHE)"},{value: "230", name: "Benoit Assou-Ekotto (TOT)"},{value: "341", name: "Phil Jones (MUN)"},{value: "218", name: "Martin Skrtel (LIV)"},{value: "220", name: "Joleon Lescott (MCY)"},{value: "235", name: "Bacary Sagna (ARS)"},{value: "495", name: "Aleksandar Kolarov (MCY)"},{value: "21", name: "Kyle Walker (TOT)"},{value: "267", name: "Brede Hangeland (FUL)"},{value: "189", name: "Kolo Toure (MCY)"},{value: "240", name: "Daniel Agger (LIV)"},{value: "247", name: "Sanchez Jose Enrique (LIV)"},{value: "34", name: "Laurent Koscielny (ARS)"},{value: "839", name: "Andre Santos (ARS)"},{value: "121", name: "Johan Djourou (ARS)"},{value: "172", name: "Jamie Carragher (LIV)"},{value: "838", name: "Per Mertesacker (ARS)"},{value: "138", name: "Pablo Zabaleta (MCY)"},{value: "679", name: "John Arne Riise (FUL)"},{value: "194", name: "Robert Huth (STK)"},{value: "480", name: "Gael Clichy (MCY)"},{value: "391", name: "Jose Bosingwa (CHE)"},{value: "457", name: "Jerome Boateng (MCY)"},{value: "244", name: "Younes Kaboul (TOT)"},{value: "816", name: "Ignasi Miquel (ARS)"},{value: "825", name: "Armand Traore (ARS)"},{value: "114", name: "Armand Traore (QPR)"},{value: "652", name: "Ignasi Miquel (ARS)"},{value: "227", name: "Rafael Da Silva (MUN)"},{value: "299", name: "Christopher Samba (BLA)"},{value: "430", name: " Alex (CHE)"},{value: "801", name: "Carl Jenkinson (ARS)"},{value: "115", name: "Vedran Corluka (TOT)"},{value: "417", name: "Ryan Taylor (NEW)"},{value: "117", name: "James Collins (AVL)"},{value: "547", name: "Sebastien Squillaci (ARS)"},{value: "120", name: "Chris Smalling (MUN)"},{value: "252", name: "Phil Jagielka (EVE)"},{value: "439", name: "Richard Dunne (AVL)"},{value: "426", name: "Johnny Heitinga (EVE)"},{value: "365", name: "Kieran Gibbs (ARS)"},{value: "106", name: "Michael Dawson (TOT)"},{value: "500", name: "Fabio Aurelio (LIV)"},{value: "460", name: "Martin Kelly (LIV)"},{value: "197", name: "Gary Cahill (CHE)"},{value: "248", name: "Ryan Shawcross (STK)"},{value: "394", name: "Sylvain Distin (EVE)"},{value: "736", name: "Ashley Williams (SWA)"},{value: "584", name: "Shkodran Mustafi (EVE)"},{value: "286", name: "Fabricio Coloccini (NEW)"},{value: "884", name: "Karim Rekik (MCY)"},{value: "570", name: "Carlos Salcido (FUL)"},{value: "458", name: "John O'Shea (SUN)"},{value: "902", name: "Bongani Khumalo (TOT)"},{value: "842", name: "Sebastian Coates (LIV)"},{value: "307", name: "Alan Hutton (AVL)"},{value: "342", name: "Sotirios Kyrgiakos (SUN)"},{value: "481", name: "Carlos Cuellar (AVL)"},{value: "237", name: "Stephen Warnock (AVL)"},{value: "33", name: "Luke Young (QPR)"},{value: "322", name: "Phillip Bardsley (SUN)"},{value: "156", name: "Chris Baird (FUL)"},{value: "420", name: "Ledley King (TOT)"},{value: "369", name: "Ryan Nelsen (TOT)"},{value: "585", name: "Shane Duffy (EVE)"},{value: "835", name: "Zdenek Grygera (FUL)"},{value: "540", name: "William Gallas (TOT)"},{value: "142", name: "Scott Dann (BLA)"},{value: "176", name: "Ciaran Clark (AVL)"},{value: "88", name: "Paulo Ferreira (CHE)"},{value: "393", name: "Jonathan Evans (MUN)"},{value: "63", name: "Roger Johnson (WOL)"},{value: "275", name: "Nedum Onuoha (QPR)"},{value: "161", name: "Steven Taylor (NEW)"},{value: "361", name: "Tony Hibbert (EVE)"},{value: "767", name: "Stefan Savic (MCY)"},{value: "876", name: "Nathaniel Chalobah (CHE)"},{value: "66", name: "Wayne Bridge (SUN)"},{value: "281", name: "Stephen Ward (WOL)"},{value: "872", name: "Sam Hutchinson (CHE)"},{value: "508", name: "Nicky Shorey (WBA)"},{value: "866", name: "Ezekiel Fryers (MUN)"},{value: "737", name: "Neil Taylor (SWA)"},{value: "378", name: "Danny Simpson (NEW)"},{value: "413", name: "Jonas Olsson (WBA)"},{value: "329", name: "Aaron Hughes (FUL)"},{value: "711", name: "Clint Hill (QPR)"},{value: "886", name: "Taye Taiwo (QPR)"},{value: "284", name: "Gary Caldwell (WIG)"},{value: "300", name: "Liam Ridgewell (WBA)"},{value: "797", name: "Bruno Ribeiro (BLA)"},{value: "780", name: "Matthew Upson (STK)"},{value: "741", name: "Angel Rangel (SWA)"},{value: "504", name: "Ronnie Stam (WIG)"},{value: "48", name: "Steve Gohouri (WIG)"},{value: "349", name: "Kyle Naughton (NOR)"},{value: "409", name: "Gabriel Tamas (WBA)"},{value: "663", name: "Ryan Bertrand (CHE)"},{value: "127", name: "Christophe Berra (WOL)"},{value: "662", name: "John Flanagan (LIV)"},{value: "435", name: "Ronald Zubar (WOL)"},{value: "763", name: "Tyrone Mears (BOL)"},{value: "72", name: "Danny Collins (STK)"},{value: "283", name: "Michel Salgado (BLA)"},{value: "338", name: "Wes Brown (SUN)"},{value: "62", name: "Anton Ferdinand (QPR)"},{value: "512", name: "Patrick Van Aanholt (WIG)"},{value: "319", name: "Gael Givet (BLA)"},{value: "221", name: "Samuel Ricketts (BOL)"},{value: "755", name: "Billy Jones (WBA)"},{value: "331", name: "Danny Higginbotham (STK)"},{value: "624", name: "David Wheater (BOL)"},{value: "229", name: "Richard Stearman (WOL)"},{value: "490", name: "Antolin Alcaraz (WIG)"},{value: "29", name: "Gonzalo Jara Reyes (WBA)"},{value: "713", name: "Kaspars Gorkss (QPR)"},{value: "386", name: "Kevin Foley (WOL)"},{value: "258", name: "Maynor Figueroa (WIG)"},{value: "494", name: "Danny Wilson (LIV)"},{value: "686", name: "Russell Martin (NOR)"},{value: "483", name: "Philippe Senderos (FUL)"},{value: "769", name: "Craig Dawson (WBA)"},{value: "190", name: "Sebastien Bassong (WOL)"},{value: "8", name: "Emmerson Boyce (WIG)"},{value: "340", name: "Paul Robinson (BOL)"},{value: "261", name: "Jonathan Woodgate (STK)"},{value: "144", name: "Zat Knight (BOL)"},{value: "296", name: "Fabio Da Silva (MUN)"},{value: "271", name: "Mike Williamson (NEW)"},{value: "844", name: "Davide Santon (NEW)"},{value: "343", name: "Michael Turner (SUN)"},{value: "173", name: "Titus Bramble (SUN)"},{value: "461", name: "Jody Craddock (WOL)"},{value: "20", name: "George Elokobi (WOL)"},{value: "477", name: "Habib Beye (AVL)"},{value: "207", name: "Gretar Rafn Steinsson (BOL)"},{value: "339", name: "Matthew Upson (STK)"},{value: "756", name: "Gareth McAuley (WBA)"},{value: "123", name: "Abdoulaye Meite (WBA)"},{value: "543", name: "Rafik Halliche (FUL)"},{value: "24", name: "Daniel Ayala (NOR)"},{value: "805", name: "Bruno Perone (QPR)"},{value: "255", name: "Ibanez Pablo (WBA)"},{value: "856", name: "Vangells Moras (SWA)"},{value: "869", name: "Derrick Williams (AVL)"},{value: "715", name: "Peter Ramage (QPR)"},{value: "689", name: "Leon Barnett (NOR)"},{value: "799", name: "Adam Henley (BLA)"},{value: "740", name: "Albert Serran (SWA)"},{value: "287", name: "Joe Mattock (WBA)"},{value: "1", name: "Shane Lowry (AVL)"},{value: "824", name: "Joe Riley (BOL)"},{value: "817", name: "Daniel Ayala (NOR)"},{value: "616", name: "James Hurst (WBA)"},{value: "516", name: "Eric Lichaj (AVL)"},{value: "739", name: "Garry Monk (SWA)"},{value: "832", name: "Federico Bessone (SWA)"},{value: "888", name: "Tim Ream (BOL)"},{value: "600", name: "Ryan Shotton (STK)"},{value: "822", name: "Michael Harriman (QPR)"},{value: "205", name: "James Perch (NEW)"},{value: "693", name: "Jens Berthel Askou (NOR)"},{value: "167", name: "Steven Mouyokolo (WOL)"},{value: "833", name: "Darnel Situ (SWA)"},{value: "599", name: "Matt Doherty (WOL)"},{value: "798", name: "Myles Anderson (BLA)"},{value: "395", name: "Marek Cech (WBA)"},{value: "691", name: "Steven Smith (NOR)"},{value: "122", name: "Stephen Kelly (FUL)"},{value: "667", name: "Louis Laing (SUN)"},{value: "742", name: "Steven Caulker (SWA)"},{value: "215", name: "Gianni Zuiverloon (WBA)"},{value: "813", name: "Louis Laing (SUN)"},{value: "716", name: "Danny Shittu (QPR)"},{value: "447", name: "Daniel Gabbidon (QPR)"},{value: "690", name: "Elliott Ward (NOR)"},{value: "614", name: "Adrian Lopez (WIG)"},{value: "714", name: "Matthew Connolly (QPR)"},{value: "505", name: "Marcos Angeleri (SUN)"},{value: "688", name: "Zak Whitbread (NOR)"},{value: "687", name: "Adam Drury (NOR)"},{value: "548", name: "Matthew Briggs (FUL)"},{value: "712", name: "Fitz Hall (QPR)"},{value: "534", name: "Josh Morris (BLA)"},{value: "467", name: "Grant Hanley (BLA)"},{value: "692", name: "Marc Tierney (NOR)"},{value: "621", name: "Nathan Baker (AVL)"},{value: "502", name: "Marcos Alonso (BOL)"},{value: "462", name: "Andy Wilkinson (STK)"},{value: "710", name: "Bradley Orr (BLA)"},{value: "346", name: "Dedryk Boyata (BOL)"},{value: "661", name: "Jack Robinson (LIV)"},{value: "157", name: "Matthew Kilgallon (SUN)"},{value: "452", name: "Ritchie De Laet (MUN)"},{value: "738", name: "Alan Tate (SWA)"},{value: "382", name: "Luis Nani (MUN)"},{value: "360", name: "Gareth Bale (TOT)"},{value: "265", name: "Ashley Young (MUN)"},{value: "809", name: "Juan Mata (CHE)"},{value: "103", name: "Florent Malouda (CHE)"},{value: "574", name: "Rafael Van der Vaart (TOT)"},{value: "50", name: "Dirk Kuyt (LIV)"},{value: "150", name: "Clint Dempsey (FUL)"},{value: "415", name: "Samir Nasri (MCY)"},{value: "273", name: "Theo Walcott (ARS)"},{value: "216", name: "Tim Cahill (EVE)"},{value: "464", name: "Charlie Adam (LIV)"},{value: "124", name: "Andrey Arshavin (ARS)"},{value: "228", name: "Antonio Valencia (MUN)"},{value: "203", name: "Luka Modric (TOT)"},{value: "352", name: "Mikel Arteta (ARS)"},{value: "113", name: "Stewart Downing (LIV)"},{value: "350", name: "Gnegneri Toure Yaya (MCY)"},{value: "419", name: "Darren Fletcher (MUN)"},{value: "84", name: "Vassiriki Diaby (ARS)"},{value: "637", name: "Stephane Sessegnon (SUN)"},{value: "569", name: "Raul Meireles (CHE)"},{value: "151", name: "Aaron Lennon (TOT)"},{value: "179", name: "James Milner (MCY)"},{value: "373", name: "Steven Pienaar (EVE)"},{value: "78", name: "Seamus Coleman (EVE)"},{value: "175", name: "Rodriguez Maxi (LIV)"},{value: "871", name: "Landon Donovan (EVE)"},{value: "470", name: "Adam Johnson (MCY)"},{value: "278", name: "Michael Essien (CHE)"},{value: "204", name: "Alberto Aquilani (LIV)"},{value: "291", name: "Yossi Benayoun (ARS)"},{value: "524", name: " Ramires (CHE)"},{value: "177", name: "Sebastian Larsson (SUN)"},{value: "292", name: "Ryan Giggs (MUN)"},{value: "155", name: "Salomon Kalou (CHE)"},{value: "450", name: "Ji-Sung Park (MUN)"},{value: "416", name: "Charles N'Zogbia (AVL)"},{value: "746", name: "Scott Sinclair (SWA)"},{value: "91", name: "Leon Osman (EVE)"},{value: "139", name: "Gareth Barry (MCY)"},{value: "264", name: "Matthew Etherington (STK)"},{value: "279", name: "Yury Zhirkov (CHE)"},{value: "530", name: "Jonathan Walters (STK)"},{value: "51", name: "Scott Parker (TOT)"},{value: "900", name: "David Pizarro (MCY)"},{value: "104", name: "Jack Wilshere (ARS)"},{value: "313", name: "Aaron Ramsey (ARS)"},{value: "3", name: "David Dunn (BLA)"},{value: "159", name: "Morten Gamst Pedersen (BLA)"},{value: "75", name: "Michael Carrick (MUN)"},{value: "295", name: "Danny Murphy (FUL)"},{value: "31", name: "Marouane Fellaini (EVE)"},{value: "294", name: "Damien Duff (FUL)"},{value: "211", name: "Jonas Gutierrez (NEW)"},{value: "427", name: "Jordan Henderson (LIV)"},{value: "166", name: "Brett Emerton (BLA)"},{value: "778", name: "Alex Oxlade-Chamberlain (ARS)"},{value: "96", name: "Chung-Yong Lee (BOL)"},{value: "195", name: "Youssouf Mulumbu (WBA)"},{value: "89", name: "Marc Albrighton (AVL)"},{value: "492", name: "Joe Cole (LIV)"},{value: "180", name: "Alex Song (ARS)"},{value: "443", name: "Shaun Wright-Phillips (QPR)"},{value: "224", name: "Stiliyan Petrov (AVL)"},{value: "681", name: "Yohan Cabaye (NEW)"},{value: "411", name: "Diniyar Bilyaletdinov (EVE)"},{value: "718", name: "Adel Taarabt (QPR)"},{value: "253", name: "Stephen Hunt (WOL)"},{value: "445", name: "Joey Barton (QPR)"},{value: "433", name: "Chris Brunt (WBA)"},{value: "289", name: "Kieran Richardson (SUN)"},{value: "466", name: "Matthew Jarvis (WOL)"},{value: "45", name: "Niko Kranjcar (TOT)"},{value: "260", name: "Tomas Rosicky (ARS)"},{value: "845", name: "Simon Vukcevic (BLA)"},{value: "269", name: "Oliveira Anderson (MUN)"},{value: "363", name: "Craig Gardner (SUN)"},{value: "146", name: "Tom Huddlestone (TOT)"},{value: "565", name: "Jermaine Pennant (STK)"},{value: "223", name: "Henri Lansbury (ARS)"},{value: "463", name: "Neves Denilson (ARS)"},{value: "849", name: "Iago Falque (TOT)"},{value: "57", name: "Jamie O'Hara (WOL)"},{value: "878", name: "Jessie Lingard (MUN)"},{value: "43", name: "Steed Malbranque (SUN)"},{value: "2", name: "Matthew Taylor (BOL)"},{value: "873", name: "Paul Pogba (MUN)"},{value: "52", name: "Emmanuel Eboue (ARS)"},{value: "815", name: "Henri Lansbury (ARS)"},{value: "826", name: "Francis Coquelin (ARS)"},{value: "875", name: "Larnell Cole (MUN)"},{value: "827", name: "Oguzhan Ozyakup (ARS)"},{value: "568", name: "Hatem Ben Arfa (NEW)"},{value: "217", name: "Dos Santos Giovani (TOT)"},{value: "335", name: "Graham Dorrans (WBA)"},{value: "626", name: "Jean Makoun (AVL)"},{value: "243", name: "Michael Kightly (WOL)"},{value: "434", name: "Stephen Ireland (AVL)"},{value: "272", name: "Jerome Thomas (WBA)"},{value: "79", name: "Zoltan Gera (WBA)"},{value: "834", name: "Roysten Drenthe (EVE)"},{value: "304", name: "Martin Olsson (BLA)"},{value: "424", name: "Tuncay Sanli (BOL)"},{value: "315", name: "James Morrison (WBA)"},{value: "764", name: "Chris Eagles (BOL)"},{value: "351", name: "Paul Scholes (MUN)"},{value: "259", name: "Simon Davies (FUL)"},{value: "454", name: "Stuart Holden (BOL)"},{value: "779", name: "Radosav Petrovic (BLA)"},{value: "73", name: "Darron Gibson (EVE)"},{value: "185", name: "Steve Sidwell (FUL)"},{value: "42", name: "Jermaine Jenas (AVL)"},{value: "388", name: "Nenad Milijas (WOL)"},{value: "554", name: "Jay Spearing (LIV)"},{value: "703", name: "Anthony Pilkington (NOR)"},{value: "802", name: "Emmanuel Frimpong (WOL)"},{value: "558", name: "Paul Scharner (WBA)"},{value: "249", name: "Martin Petrov (BOL)"},{value: "401", name: "Gael Kakuta (BOL)"},{value: "571", name: "Tom Cleverley (MUN)"},{value: "129", name: "Jack Rodwell (EVE)"},{value: "678", name: "Darren Pratley (BOL)"},{value: "396", name: "Fabian Delph (AVL)"},{value: "819", name: "Jake Livermore (TOT)"},{value: "696", name: "Wesley Hoolahan (NOR)"},{value: "41", name: "Rory Delap (STK)"},{value: "903", name: "Massimo Luongo (TOT)"},{value: "164", name: "David Vaughan (SUN)"},{value: "383", name: "Steven Nzonzi (BLA)"},{value: "720", name: "Alejandro Faurlin (QPR)"},{value: "897", name: "Marcus Olsson (BLA)"},{value: "226", name: "Jonathan Greening (FUL)"},{value: "865", name: "Ryan Fredericks (TOT)"},{value: "71", name: "Danny Pugh (STK)"},{value: "188", name: "Giles Barnes (WBA)"},{value: "219", name: "Glenn Whelan (STK)"},{value: "562", name: "Jean Beausejour (WIG)"},{value: "642", name: "Abdul Razak (MCY)"},{value: "880", name: "Gylfi Sigurdsson (SWA)"},{value: "854", name: "Thomas Carroll (TOT)"},{value: "423", name: "Adlene Guedioura (WOL)"},{value: "820", name: "Andros Townsend (TOT)"},{value: "567", name: "Marc Wilson (STK)"},{value: "131", name: "James McCarthy (WIG)"},{value: "883", name: "Nico Yennaris (ARS)"},{value: "170", name: "David Edwards (WOL)"},{value: "636", name: "Mauro Formica (BLA)"},{value: "135", name: "Jack Colback (SUN)"},{value: "773", name: "Tom Soares (STK)"},{value: "375", name: "Raniere Sandro (TOT)"},{value: "777", name: "Ryo Miyaichi (BOL)"},{value: "890", name: "Lucas Piazon (CHE)"},{value: "421", name: "Danny Guthrie (NEW)"},{value: "541", name: "Somen Tchoyi (WBA)"},{value: "538", name: "Jake Livermore (TOT)"},{value: "625", name: "Adam Hammill (WOL)"},{value: "432", name: "Mark Davies (BOL)"},{value: "449", name: "Ben Watson (WIG)"},{value: "837", name: "Albert Crusat (WIG)"},{value: "232", name: "Steven Reid (WBA)"},{value: "638", name: "Jason Puncheon (QPR)"},{value: "336", name: "Mohamed Diame (WIG)"},{value: "588", name: "Jonjo Shelvey (LIV)"},{value: "745", name: "Nathan Dyer (SWA)"},{value: "148", name: "Victor Moses (WIG)"},{value: "337", name: "Gabriel Obertan (NEW)"},{value: "429", name: "Danny Rose (TOT)"},{value: "404", name: "Wayne Routledge (SWA)"},{value: "4", name: "Owen Hargreaves (MCY)"},{value: "848", name: "James McClean (SUN)"},{value: "768", name: "Elliott Bennett (NOR)"},{value: "496", name: "Dan Gosling (NEW)"},{value: "760", name: "Pajtim Kasami (FUL)"},{value: "347", name: "Nigel De Jong (MCY)"},{value: "747", name: "Joe Allen (SWA)"},{value: "392", name: "Dean Whitehead (STK)"},{value: "694", name: "Andrew Crofts (NOR)"},{value: "367", name: "Leiva Lucas (LIV)"},{value: "212", name: "Wilson Palacios (STK)"},{value: "158", name: "Jordi Gomez (WIG)"},{value: "344", name: "Lee Cattermole (SUN)"},{value: "169", name: "Phil Neville (EVE)"},{value: "47", name: "Dickson Etuhu (FUL)"},{value: "775", name: "Oriol Romeu (CHE)"},{value: "682", name: "Sylvain Marveaux (NEW)"},{value: "580", name: "Josh McEachran (SWA)"},{value: "752", name: "Stephen Dobbie (SWA)"},{value: "328", name: "Ahmed Elmohamady (SUN)"},{value: "579", name: "Ross Barkley (EVE)"},{value: "862", name: "Anthony Forde (WOL)"},{value: "514", name: "Michael Tonge (STK)"},{value: "836", name: "Shaun Maloney (WIG)"},{value: "602", name: "Geoffrey Mujangi Bia (WOL)"},{value: "674", name: "Joshua Vela (BOL)"},{value: "702", name: "Bradley Johnson (NOR)"},{value: "818", name: "Diego Arismendi (STK)"},{value: "877", name: "Sam Mantom (WBA)"},{value: "895", name: "Scott Allan (WBA)"},{value: "324", name: "Diego Arismendi (STK)"},{value: "808", name: "Kerim Frei (FUL)"},{value: "701", name: "Owain Tudur Jones (NOR)"},{value: "119", name: "Nigel Reo-Coker (BOL)"},{value: "591", name: "Daniel Johnson (AVL)"},{value: "613", name: "Jason Lowe (BLA)"},{value: "700", name: "Anthony McNamee (NOR)"},{value: "852", name: "Gary Gardner (AVL)"},{value: "751", name: "Leon Britton (SWA)"},{value: "30", name: "Keith Andrews (WBA)"},{value: "519", name: "Christian Poulsen (LIV)"},{value: "772", name: "Kazenga LuaLua (NEW)"},{value: "590", name: "Herold Goulon (BLA)"},{value: "859", name: "Alex Kacaniklic (FUL)"},{value: "744", name: "Cedric Van der Gun (SWA)"},{value: "38", name: "Amine Linganzi (BLA)"},{value: "308", name: "Bjorn Helge Riise (FUL)"},{value: "889", name: "Ben Marshall (STK)"},{value: "853", name: "Lee Lucas (SWA)"},{value: "666", name: "George Thorne (WBA)"},{value: "867", name: "Mehdi Abeid (NEW)"},{value: "749", name: "Mark Gower (SWA)"},{value: "723", name: "Hogan Ephraim (QPR)"},{value: "892", name: "Eggert Jonsson (WOL)"},{value: "527", name: "Haris Vuckic (NEW)"},{value: "722", name: "Petter Vaagan Moen (QPR)"},{value: "607", name: "Jordan Cook (SUN)"},{value: "721", name: "Martin Rowlands (QPR)"},{value: "594", name: "Chris Herd (AVL)"},{value: "515", name: "Barry Bannan (AVL)"},{value: "695", name: "Andrew Surman (NOR)"},{value: "498", name: "James McArthur (WIG)"},{value: "36", name: "David Meyler (SUN)"},{value: "719", name: "Akos Buzsaky (QPR)"},{value: "770", name: "Adam Forshaw (EVE)"},{value: "453", name: " Mikel (CHE)"},{value: "699", name: "Simon Lappin (NOR)"},{value: "750", name: "Ashley Richards (SWA)"},{value: "550", name: "Cheik Tiote (NEW)"},{value: "724", name: "Bruno Andrade (QPR)"},{value: "345", name: "Fabrice Muamba (BOL)"},{value: "130", name: "Salif Diao (STK)"},{value: "698", name: "Korey Smith (NOR)"},{value: "405", name: "David Jones (WIG)"},{value: "635", name: "Michael Bradley (AVL)"},{value: "697", name: "David Fox (NOR)"},{value: "285", name: "Karl Henry (WOL)"},{value: "759", name: "Marcel Gecov (FUL)"},{value: "428", name: "Vincenzo Grella (BLA)"},{value: "316", name: "Kieron Dyer (QPR)"},{value: "101", name: "Alan Smith (NEW)"},{value: "743", name: "Andrea Orlandi (SWA)"},{value: "717", name: "Shaun Derry (QPR)"},{value: "95", name: "Ricardo Gardner (BOL)"},{value: "353", name: "Hendry Thomas (WIG)"},{value: "748", name: "Kemy Agustien (SWA)"},{value: "617", name: "Shane Ferguson (NEW)"},{value: "12", name: "Francesc Fabregas (ARS)"},{value: "53", name: "Frank Lampard (CHE)"},{value: "487", name: "David Silva (MCY)"},{value: "389", name: "Steven Gerrard (LIV)"},{value: "310", name: "Javier Hernandez (MUN)"},{value: "11", name: "Darren Bent (AVL)"},{value: "628", name: "Luis Suarez (LIV)"},{value: "356", name: "Emmanuel Adebayor (TOT)"},{value: "442", name: "Andrew Carroll (LIV)"},{value: "305", name: "Dimitar Berbatov (MUN)"},{value: "758", name: "Yao Gervinho (ARS)"},{value: "256", name: "Jermain Defoe (TOT)"},{value: "619", name: "Edin Dzeko (MCY)"},{value: "528", name: "Mario Balotelli (MCY)"},{value: "225", name: "Nicolas Anelka (CHE)"},{value: "40", name: "Marouane Chamakh (ARS)"},{value: "630", name: "Demba Ba (NEW)"},{value: "560", name: "Asamoah Gyan (SUN)"},{value: "810", name: "Romelu Lukaku (CHE)"},{value: "214", name: "Craig Bellamy (LIV)"},{value: "537", name: "Peter Odemwingie (WBA)"},{value: "112", name: "Daniel Sturridge (CHE)"},{value: "887", name: "Papiss Cisse (NEW)"},{value: "239", name: "Louis Saha (TOT)"},{value: "35", name: "Bobby Zamora (QPR)"},{value: "403", name: "Gabriel Agbonlahor (AVL)"},{value: "441", name: "Danny Welbeck (MUN)"},{value: "100", name: "Roman Pavlyuchenko (TOT)"},{value: "893", name: "Djibril Cisse (QPR)"},{value: "846", name: "Chu-Young Park (ARS)"},{value: "898", name: "Nikica Jelavic (EVE)"},{value: "468", name: "Jermaine Beckford (EVE)"},{value: "881", name: "Thierry Henry (ARS)"},{value: "254", name: "Peter Crouch (STK)"},{value: "206", name: "Nicklas Bendtner (SUN)"},{value: "15", name: "Milan Jovanovic (LIV)"},{value: "840", name: "Bryan Ruiz (FUL)"},{value: "899", name: "Pavel Pogrebnyak (FUL)"},{value: "27", name: "Hugo Rodallega (WIG)"},{value: "358", name: "Kenwyne Jones (STK)"},{value: "282", name: "Michael Owen (MUN)"},{value: "478", name: "Fraizer Campbell (SUN)"},{value: "380", name: "Ayegbeni Yakubu (BLA)"},{value: "210", name: "Steven Fletcher (WOL)"},{value: "355", name: "Kevin Doyle (WOL)"},{value: "782", name: "Shane Long (WBA)"},{value: "503", name: "Ivan Klasnic (BOL)"},{value: "733", name: "Connor Wickham (SUN)"},{value: "774", name: "David Goodwillie (BLA)"},{value: "438", name: "Kevin Davies (BOL)"},{value: "901", name: "Marvin Sordell (BOL)"},{value: "828", name: "Gilles Sunu (ARS)"},{value: "823", name: "Tuncay Sanli (BOL)"},{value: "105", name: "Nikola Kalinic (BLA)"},{value: "178", name: "David Hoilett (BLA)"},{value: "731", name: "Jay Bothroyd (QPR)"},{value: "521", name: "Joao Alves Jo (MCY)"},{value: "93", name: "Federico Macheda (QPR)"},{value: "436", name: "Carlos Alberto Vela (ARS)"},{value: "874", name: "Will Keane (MUN)"},{value: "10", name: "Ricardo Fuller (STK)"},{value: "374", name: "Cameron Jerome (STK)"},{value: "143", name: "David Ngog (BOL)"},{value: "163", name: "Sylvan Ebanks-Blake (WOL)"},{value: "270", name: "Jason Roberts (BLA)"},{value: "455", name: "Emile Heskey (AVL)"},{value: "544", name: "Marc-Antoine Fortune (WBA)"},{value: "707", name: "Steve Morison (NOR)"},{value: "531", name: "Moussa Dembele (FUL)"},{value: "456", name: "Robbie Keane (AVL)"},{value: "843", name: "Denis Stracqualursi (EVE)"},{value: "126", name: "Mame Diouf (MUN)"},{value: "754", name: "Danny Graham (SWA)"},{value: "811", name: "Stefan Maierhofer (WOL)"},{value: "97", name: "Victor Anichebe (EVE)"},{value: "864", name: "Harry Kane (TOT)"},{value: "896", name: "Marcello Trotta (FUL)"},{value: "726", name: "Heidar Helguson (QPR)"},{value: "213", name: "Peter Lovenkrands (NEW)"},{value: "110", name: "Stefan Maierhofer (WOL)"},{value: "885", name: "Anthony Modeste (BLA)"},{value: "891", name: "Cameron Lancaster (TOT)"},{value: "841", name: "Orlando Sa (FUL)"},{value: "704", name: "Grant Holt (NOR)"},{value: "513", name: "Andreas Weimann (AVL)"},{value: "855", name: "Jordan Slew (BLA)"},{value: "868", name: "Graham Burke (AVL)"},{value: "639", name: "Andros Townsend (TOT)"},{value: "191", name: "Shola Ameobi (NEW)"},{value: "471", name: "Mamady Sidibe (STK)"},{value: "555", name: "DJ Campbell (QPR)"},{value: "727", name: "Jamie Mackie (QPR)"},{value: "58", name: "James McFadden (EVE)"},{value: "796", name: "Nick Blackman (BLA)"},{value: "182", name: "Nathan Delfouneso (AVL)"},{value: "622", name: "James Vaughan (NOR)"},{value: "730", name: "Tommy Smith (QPR)"},{value: "268", name: "Franco Di Santo (WIG)"},{value: "257", name: "Simon Cox (WBA)"},{value: "641", name: "Conor Sammon (WIG)"},{value: "390", name: "Andrew Johnson (FUL)"},{value: "649", name: "Ruben Rochina (BLA)"},{value: "489", name: "Magaye Gueye (EVE)"},{value: "734", name: "Dong-Won Ji (SUN)"},{value: "705", name: "Simeon Jackson (NOR)"},{value: "479", name: "Ishmael Miller (WBA)"},{value: "551", name: "Callum McManaman (WIG)"},{value: "894", name: "Angelo Balanta (QPR)"},{value: "850", name: "Aaron Wilbraham (NOR)"},{value: "821", name: "Troy Hewitt (QPR)"},{value: "858", name: "John Egan (SUN)"},{value: "807", name: "Adam Blakeman (BOL)"},{value: "410", name: "Sam Vokes (WOL)"},{value: "860", name: "Conor McAleny (EVE)"},{value: "184", name: "Leon Best (NEW)"},{value: "861", name: "Michael O'Halloran (BOL)"},{value: "728", name: "Patrick Agyemang (QPR)"},{value: "171", name: "Andrew Keogh (WOL)"},{value: "706", name: "Chris Martin (NOR)"},{value: "725", name: "Leon Clarke (QPR)"},{value: "771", name: "Apostolos Vellios (EVE)"},{value: "804", name: "Sammy Ameobi (NEW)"},{value: "646", name: "Ryan Noble (SUN)"},{value: "60", name: "Luke Moore (SWA)"},{value: "659", name: "Craig Lynch (SUN)"},{value: "729", name: "Rob Hulse (QPR)"},{value: "86", name: "Jose Baxter (EVE)"},{value: "776", name: "Leroy Lita (SWA)"},{value: "753", name: "Craig Beattie (SWA)"},{value: "198", name: "Robbie Blake (BOL)"},{value: "64", name: "Nile Ranger (NEW)"},{value: "266", name: "Robin van Persie (ARS)"},{value: "208", name: "Wayne Rooney (MUN)"},{value: "465", name: "Carlos Tevez (MCY)"},{value: "765", name: "Sergio Aguero (MCY)"},{value: "109", name: "Didier Drogba (CHE)"},{value: "186", name: "Fernando Torres (CHE)"},
]};
$(document).ready(function() {
//$("#LoginButton").fancybox({
// 'autoScale':true,
// 'transitionIn':'elastic',
// 'transitionOut':'elastic',
// 'easingIn':'easeOutBack',
// 'easingOut':'easeInBack',
// 'type':'iframe'
//});
$('#LoginButton').click(function(e) {
e.preventDefault();
var $this = $(this);
var horizontalPadding = 30;
var verticalPadding = 30;
$('').dialog({
title: ($this.attr('title')) ? $this.attr('title') : 'Login',
autoOpen: true,
width: 800,
height: 500,
modal: true,
resizable: true,
autoResize: true,
overlay: {
opacity: 0.5,
background: "black"
}
}).width(800 - horizontalPadding).height(500 - verticalPadding);
});
$(function() {
$('.Max').click(function(){
MaximiseWidget ($(this).parent().parent().parent().parent().attr('id'), '');
});
$('.Min').click(function(){
$(this).parent().parent().parent('.WidgetHeader').siblings('.WidgetContent').toggle();
$(this).parent().siblings().children('.Mid').show();
$(this).hide();
});
$('.Mid').click(function(){
$(this).parent().parent().parent('.WidgetHeader').siblings('.WidgetContent').toggle();
$(this).parent().siblings().children('.Min').show();
$(this).hide();
});
UpdateEvents();
$(".Column").sortable({
connectWith: '.Column',
handle: '.WidgetHeader',
revert: 300,
cursor: 'move',
placeholder: 'Placeholder',
forcePlaceholderSize: true,
opacity: 0.8,
tolerance: 'pointer',
stop: function(event, ui){
var sortorder='';
$('.Column').each(function(){
var itemorder=$(this).sortable('toArray');
var ColumnID=$(this).attr('id');
createCookie(ColumnID, itemorder.toString(), 10000);
});
}
}).disableSelection();
});
});
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-17768962-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();