$(function() {

	// functionality for distributors page
	if ($('.map').length > 0 ) {

		// hide elements that will be revealed through js but need to be accessible otherwise
		$('a[href="#regionList"],.region,.country').hide();
		
		$('a.regionLink,#nav .distributors ul a,#map area').click(function() {
			
			$('.region').hide();
			
			$('#'+getId(this.href)).show();
			
			return false;
		});
		
		$('.region ul a').click(function() {
		
			$(this).parents('.region').find('.country').hide();
			
			$('#'+getId(this.href)).show();
		
			return false;
			
		});

		if (document.location.href.split('#')[1] != undefined) {
		
			preSelectRegion = document.location.href.split('#')[1]
		
			$('a.regionLink').filter('[href="#'+preSelectRegion+'"]').click();
		
		}

	}

});

function getId(href) {
	return href.split('#')[1];
}