jQuery(function($) {
  var html = "<h3><img src=\"images/map-logo.png\" alt=\"café Renzo Piano\" title=\"café Renzo Piano\" /></h3>"
    + "<p class=\"route\"><a href=\"http://maps.google.com/maps?hl=nl&saddr=&daddr=52.374236,4.912013\" target=\"_blank\">&rarr; plan je route…</a></p>";
  
  $('#map').gMap({
    zoom: 14,
    latitude: 52.38,
    longitude: 4.914,    
    markers: [{
      latitude: 52.374236,
      longitude: 4.912013,
      html: html,
      popup: true
    }]
  });
  $('#map').hide();
  $('.map a').click(function (){
    $('#map').slideToggle('fast');
    return false;
  });

  $('#slideshow').cycle({speed: 1500, timeout: 5000});
  
  $('a[rel*=facebox]').facebox({
    loadingImage : 'images/loading.gif',
    closeImage   : 'images/closelabel.gif'
  });
});
