$(function(){
	$("a.loc").click(function(){
	//get the id
	the_id = $(this).attr('id');
	//$("div#content").fadeOut("fast");
	// show the spinner
	$("div#content").html("<img src='/img/spinner.gif'/>");
	
	//fadeout the vote-count 
	
	//$("div#content").remove();
	//the main ajax request
		$.ajax({
			type: "GET",
			data: "l="+$(this).attr("id"),
			url: "/php/locations.php",
			success: function(msg)
			{
				//$("div#content").remove();
				$("div#content").html(msg);
				//fadein the vote count
				//$("div#content").fadeIn();
				//remove the spinner
				
			}
		});
	});
	
});	