//All javascript goes in here

//Roster Javascript

$().ready(function() {
		$(".table_link").click(function(){
			$.get("include/profiles.php",{player_name: $(this).text()}, 
	 			function(data){
	 				$('#player_profiles').html(data); 
				});
			$('#player_profiles').show();
				return false;
		})
		
		$(".get_map").click(function(){
			$.get("include/google_map.php",
				function(data){
					$("#google_map").html(data).toggle();
				})
			return false;
		
		});
		
});



