function setLocationLinks(){
	
	$(".more").toggle();
	
	$(".more-link").click(function(){
		$(this).next().slideToggle();
		map.checkResize();
	});
}