$(document).ready(function(){


	// Get booking script and functions if the element with id="booking" is found.
	if ($('#booking').length > ''){
	   	$(this).initBooking();		
	}
});



// Bottom ajust for images in divs
jQuery.fn.setImageMarginBottom = function(){
	var height = $(this).closest('div').height();
	var mtop = height-$(this).height();
	$(this).css('padding-top',+Math.round(mtop)+'px');
	return this;
};

