$(document).ready(function() {
	
	// Add accordion to people page
	$( "div#accordion" ).accordion({ autoHeight: false, collapsible: false, active: false, icons: { 'header': 'ui-icon-plus', 'headerSelected': 'ui-icon-minus' } });
	
	$('#booking_form').hide(); 
	$('<a href="#" class="revealer button grey" title="Book now!">Book now!</a>').insertBefore('#booking_form'); 
	$('.revealer').click(function(){ 
	  $('.content').hide(); 
		$(this).hide();  
		$(this).next().fadeIn(); 
	});
	
	$("#2").fancybox({
		'scrolling' : 'no',
		'titleShow'	: false
	});
	
	$("#newsletter_link").fancybox({
		'scrolling' : 'no',
		'titleShow'	: false
	});

});





(function($){

 





 



})(window.jQuery);



window.log = function(){
  log.history = log.history || []; 
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};

(function(doc){
  var write = doc.write;
  doc.write = function(q){ 
    log('document.write(): ',arguments); 
    if (/docwriteregexwhitelist/.test(q)) write.apply(doc,arguments);  
  };
})(document);



