// Controlling reservation area's open/close
// Coded by Kinotrope Inc.

$(function() {
	toggle.init();
});

var toggle = {
	area : null,
	init:function() {
		toggle.area = $('.toggle');
		toggle.bind();
	},
	bind:function() {
		toggle.area.each(function() {
			var _self = $(this);
			_self.find('.toggleHead ul li a').click(function() {
				_self.find('.toggleBody').toggle();
				$(this).parent().toggleClass('open');
			});
		});
	}
};

