$(document).ready(function(){
	$("#loading_places").hide();
});

function doTheJob(id){
	$(document).ready(function(){
		$("#loading_places").hide();
		$("#place_"+id).click(function(){
			$("#places_list").html($("#loading_places").html());
			$.post("/places/open/"+id+"/home", null, function(data){
					$("#places").html(data);
				}
			);
			return false;
		});
	});
}
