$(function(){
	$("#main_content").hide();
	$("#main_content").fadeIn(200);

	$("li.content-menu, h3").click(function() {
		$("div.content-block").hide();
		$("#"+$(this).attr("rel")).fadeIn(1000);
	});
	
	// Accordion
	$("#accordion").accordion({ header: "h3" });

	var selected = jQuery.url.param("section");
				
	if (selected != "") {
		$("#"+selected+"_click").click();
	};

	$('.map-items').hide();
	$("a.explore-locations").click(function() 	{
		$('.map-items').hide();
		$('.'+$(this).attr('rel')).show(100);
	});
				
});

