$(function() {
	$(".select").click(function()
	{
		var id = $(this).attr("id");
		var dataString = 'id='+ id ;
		var parent = $(this);


		$.ajax({
		type: "POST",
		url: "/wp-content/themes/yafc_theme/select_player.php",
		data: dataString,
		cache: false,
		success: function(html){
			$('#player_profile').html(html);
		}
		});
		return false;
	});
});
