
// Map tabs

$(function () {
	var tabContainers = $('#mapselection > div.mapcontainer');
	tabContainers.hide().filter(':first').show();
	$('#maptabs li a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('#maptabs li').removeClass('selected');
		$(this).parent().addClass('selected');
		return false;
	}).filter(':first').click();
});
