$(document).ready(function() {
	$("a.external").click(function() {
		var newWindow = window.open(this.getAttribute('href'), '_blank');
		newWindow.focus();
		return false;
	});
	
	$("a#list_trigger").click(function() {
		$("ul.county_list").slideToggle();
 		$("#list_trigger").toggleClass("open");	        	
	});
	
	$(".show_more").click(function() {
		var fullid = $(this).attr("id");
		var temp = fullid.split("_");
		var id_num = temp[1];
		$("#more_"+id_num).slideToggle();				
	}); 
});