var popCalOpts = {
	showOn: 'both',
    dateFormat: 'dd/mm/yy',
    prevText: '<<',
    nextText: '>>',
	closeText: 'X',
    changeMonth: false,
    changeYear: false,
	buttonImage: '/static/images/calendar.png',
	buttonImageOnly: true
};

$(document).ready(function(){
	$("#global-menu ul.nav").superfish({
		//animation : { opacity:"show", height:"show" }
	});
    $('#contact-map').maphilight({
	    fill: true,
	    fillColor: 'a50000',
	    fillOpacity: 1,
	    stroke: true,
	    strokeColor: 'a50000',
	    strokeOpacity: 1,
	    strokeWidth: 1,
	    fade: true,
	    alwaysOn: false
    });
    $('map.places area[coords]').mouseover(function(){
        id = $(this)[0].id;
        $('#contact-place-'+id).fadeIn();
    });
    $('map.places area[coords]').mouseout(function(){
        id = $(this)[0].id;
        $('#contact-place-'+id).hide();
    });
});