$(document).ready(function () {
   $('ul.photogallery').hide();
   $('ul.photogallery').before('<p class="photogallery-loading">Caricamento foto...</p>');
   if($('#google-map')) {
      $('#google-map').width(460);
      $('#google-map').height(460);
      var myLatlng = new google.maps.LatLng(44.448418,11.192472);
      var myOptions = {
        zoom: 13,
        center: myLatlng,
        mapTypeId: google.maps.MapTypeId.ROADMAP
      };
      var map = new google.maps.Map(document.getElementById("google-map"), myOptions);
      var marker = new google.maps.Marker({ position: myLatlng, title:"Re Boletus"});
      marker.setMap(map); 
   }
});
$(window).load(function () {
   $('p.photogallery-loading').remove();
   $('ul.photogallery').show();
   $('ul.photogallery').innerfade({ speed: 'slow', timeout: 3000, type: 'sequence', containerheight: $('ul.photogallery img').first().height()}); 
});

