$(function(){
	$('#map').mobilymap({
		position: 'center',
		popupClass: 'point-window',
		markerClass: 'point',
		popup: true,
		cookies: false,
		caption: false,
		setCenter: true,
		navigation: true,
		navSpeed: 1000,
		navBtnClass: 'navBtn',
		outsideButtons: '#points a',
		onMarkerClick: function() {
			var that = $(this);
			$('#points a').removeClass('active');
			$('#points a[rel=' + that.attr('id') + ']').addClass('active');
		},
		onPopupClose: function() {
			$('#points a').removeClass('active');
		},
		onMapLoad: function() {
			$('#point-city-center').trigger('click');
		}
	});
});

$(document).ready(function() {
	$('#access li:not(.current_page_item, .current-menu-ancestor, .current-menu-item, .current-menu-parent, .current-page-ancestor)').hover(
		function(event) {
			var that = $(this);
			that.closest('#access').addClass('hover');
		},
		function(event) {
			var that = $(this);
			that.closest('#access').removeClass('hover');
		}
	);
});

