var booking_system = {
	init : function(){
		$("#booking_system").addClass("hidden");
		$("#show_booking_system").removeClass("hidden").find("a").click(this.clickIt);
	},
	clickIt : function(){
		$("#show_booking_system").remove();
		$("#booking_system").slideDown('slow');
		return false;
	}
};

jQuery.noConflict();
jQuery(document).ready(function($){
	booking_system.init();
});