$(function(){
	$("a.staticgmap").click(function(){
	 //get the id

	 // show the spinner
	 $("#gmap").html("<img src='http://villovagar.se/js/img/spinner.gif'/>");

	 //the main ajax request
	  $.ajax({
	   type: "GET",
	   data: ({place : $('#add_where').val()}),
	   url: "http://villovagar.se/functions/getcoordinates.php",
	   success: function(msg)
	   {
	    $("#gmap").html(msg);
	   },
		timeout: 5000
	  });
	return false;
	 });
});