/* COUNTRY SELECT */
$(function () {
	//show section
	if(location.hash) {
		var $tar = $(location.hash);
		$tar.addClass('expanded_').next().show();
	}	
	//set initial display
	$items = $('.location-item');
	$items.hide();
	
	//attach form submit
	$('#global-locations-form').submit(function() {
		var $sel = $('#global-locations-select');
		$items.filter(':visible').hide();
		$items.filter('#'+$sel.val()).show();
		return false;
	});
});