/**
 * Utility to enable external links in new window.  
 */ 
var LinkHandler = {

  init: function() 
  {
    $('a.ext').click(function(){ window.open(this.href); return false; });
    $('a[href$=".pdf"]').click(function(){ window.open(this.href); return false; });
  }
  
};
$(document).ready(LinkHandler.init);

/**
 * Initialise datepicker on date field in booking form.  
 */ 
$(document).ready(function()
{
	$('#date').datePicker();
});