// JavaScript Document

/* Create jQuery UI Calendars for Departures */

$(function() {
	$('#date_return').datepicker();
	$('#date_depart').datepicker();
});

/* Create Tabbed Browsing */

$(function() {
	$('#tabs').tabs();		   
});

/* Call a Modal Box
$(function() {
		$("#dialog").dialog({
			bgiframe: true,
			modal: true,
			buttons: {
				Ok: function() {
					$(this).dialog('close');
			}
		}
	});
});
*/