/* CONTACT US 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
	$('.js-form').submit(function() {
		var $sel = $(this).find('select');
		var $items = $(this).parents('.expander-body').find('.location-item');
		$items.filter(':visible').hide().end().filter('#'+$sel.val()).show();
		return false;
	});
});