/*
 * Trigger when the DOM is loaded
 */
$(document).ready(function() {
  
  /*
   * Datepicker activation for multiple datepickers (class instead of id)
   */
  $(".datepicker" ).datepicker({dateFormat: 'yy-mm-dd'});
});

/*
 * Trigger when all objects are loaded
 */
$(window).load(function() {
  $("#slideshow").slideShow({"title": "Latin Voyages", "total": 8});
});

/* Google Analytics */
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23995786-1']);
_gaq.push(['_trackPageview']);
_gaq.push(['_trackPageLoadTime']);

(function() {
  var ga = document.createElement('script');ga.type = 'text/javascript';ga.async = true;
  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(ga, s);
})();
  
