// JavaScript Document $(document).ready(function() { $('.zoom-gallery').magnificPopup({ delegate: 'a', type: 'image', closeOnContentClick: false, closeBtnInside: false, mainClass: 'mfp-with-zoom mfp-img-mobile', image: { verticalFit: true, titleSrc: function(item) { return item.el.attr('title'); } }, gallery: { enabled: true }, zoom: { enabled: true, duration: 300, // don't foget to change the duration also in CSS opener: function(element) { return element.find('img'); } } }); $('#banner').cycle(); if($('.zoom-gallery').length) { $("img.lazy").lazyload({ effect : "fadeIn" }); } }); function initialize(mapa,x,y) { var myLatlng = new google.maps.LatLng(x,y); var myOptions = { zoom: 15, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP } var map = new google.maps.Map(document.getElementById(mapa), myOptions); var marker = new google.maps.Marker({ position: myLatlng, icon: 'http://cannadal.cat/templates/PUBLIC/img/marker.png', map: map }); } function menu(el) { $('#navigation').toggle(); $(el).toggleClass('active'); }