$(document).ready(function(){
  initNav();
  initGallery();
  
  $('#arrive').calendar({autoPopUp: 'both', 
    buttonImageOnly: true, buttonImage: '<xsl:value-of select="$RootPath" />images/calendar-arrive.gif', 
    buttonText: 'Arrival date'});
  
  $('#depart').calendar({autoPopUp: 'both', 
    buttonImageOnly: true, buttonImage: '<xsl:value-of select="$RootPath" />images/calendar-depart.gif', 
    buttonText: 'Departure date'});
  
  $('#inpSubmit').click(function() { prepareBookingForm() });
  
  /* homepage slider */
  $("#hero > ul").anythingSlider({
    easing: 'easeInOutExpo',
    width: 730,
    height: 219,
    toggleControls: false,
    delay: 10000,
    animationTime: 1500,
    navigationFormatter: function(i, panel)
    
    // delay: 300
    // animationTime: 500
    
    {
      return '';
    }
  });
  
  $("#hero .anythingControls .start-stop").remove();

  /* twitter block */
  $(function(){
    $("#tweets").tweet({
      avatar_size: 32,
      count: 1,
      username: "fourpillarsuk",
      template: function(i){return i["text"]}
    });
  });
  
});
