$(document).ready(function(){
	//show navigation links					   
	$('#navigation-list').append(' <li class="navigation-list"><a href="javascript:void(0);" title="book a bouldering mat" id="booking_system" class="navigation-link">book a crash pad</a></li>');
	
	//initiate booking system from every page
	var booking_system = new Booking_system();
	booking_system.create_booking_system();

	
	//if resize or scroll window change opacity background height and width
	$(window).resize(function () { 
      if ($('#overlay').attr('id') == 'overlay') {
		$('#overlay').css('height', $(document).height());
		$('#overlay').css('width', $(document).width());
	  }
    });
	$(window).scroll(function () { 
      if ($('#overlay').attr('id') == 'overlay') {
		$('#overlay').css('height', $(document).height());
		$('#overlay').css('width', $(document).width());
	  }
    });
	
	//initiate lightbox for each image
	if (typeof(latest_photos_count) == 'number') {
		$(function() {
			// Select all links that contains lightbox in the attribute rel
			$('a[@rel*=lightbox]').lightBox(); 
			for (var i=1; i<=latest_photos_count; i++) {
				$('#lightbox_loader_'+i).remove();
				$('#image_'+i).fadeIn('fast');
			}
		});
	}
	
});