jQuery(document).ready(function(){
	
	jQuery("#flex10").flexigrid
			(
			{
			url: 'http://www.fifafanatic.com/wp-content/themes/InterPhase/post10.php',
			dataType: 'json',
			colModel : [
				{display: 'First Name', name : 'first_name', width: 80, sortable : true, align: 'center'},
				{display: 'Last Name', name : 'last_name', width: 100, sortable : true, align: 'center'},
				{display: 'Position', name : 'position', width : 40, sortable : true, align: 'center'},
				{display: 'Age', name : 'age', width : 30, sortable : true, align: 'center'},
				{display: 'Overall', name : 'overall', width : 40, sortable : true, align: 'center'},
				{display: 'Peak', name : 'peak', width : 30, sortable : true, align: 'center'},
				{display: 'Growth', name : 'growth', width : 40, sortable : true, align: 'center'},
				{display: 'Club', name : 'club', width : 100, sortable : true, align: 'center'},
				{display: 'Nationality', name : 'nationality', width : 85, sortable : true, align: 'center'},
				{display: 'Transfer Price (&pound;)', name : 'transfer', width : 85, sortable : true, align: 'center'},
				{display: 'wage (&pound;)', name : 'wage', width : 60, sortable : true, align: 'center'}
			],
			searchitems : [
				{display: 'Last Name', name : 'last_name', isdefault: true},
				{display: 'Club', name : 'club'},
				{display: 'Position', name : 'position'},
				{display: 'Nationality', name : 'nationality'}
				
			],
			sortname: "peak",
			sortorder: "desc",
			usepager: true,
			title: 'FIFA 10 Best Young Players',
			useRp: true,
			rp: 10,
			showTableToggleBtn: true,
			width: 585,
			height: 300
			}
			);   
	
});
