$(document).ready(function()
{
	$('div.places ul').hide();
	$('div.places').toggle(
		function(){
			$(this).find("ul").show("slow");
		},
		function(){
			$(this).find("ul").hide("slow");
		}
	);
});
