/**
 * Inquiry form JS for step 1
 * 
 * @package reservations
 */

$(document).ready(function ()
{
	// Hide display case (for when submitted)
	if ($('input#f_who_3').attr('checked') == true)
	{
		$('input#f_reservation_type_3').parent().hide();
		$('input#f_reservation_type_3').hide()
		$('input#f_reservation_type_3').attr('checked', false);
	}
	
	// Hide display case
	$('input#f_who_3').click(function()
	{
		$('input#f_reservation_type_3').parent().slideUp(function ()
		{
			$('input#f_reservation_type_3').hide();
			$('input#f_reservation_type_3').attr('checked', false);
		});
	});
	
	// Re-show display case
	$('input#f_who_1').click(function()
	{
		if ($('input#f_reservation_type_3').css('display') == 'none')
		{
			$('input#f_reservation_type_3').show();
			$('input#f_reservation_type_3').parent().slideDown();
		}
	});
	$('input#f_who_2').click(function()
	{
		if ($('input#f_reservation_type_3').css('display') == 'none')
		{
			$('input#f_reservation_type_3').show();
			$('input#f_reservation_type_3').parent().slideDown();
		}
	});
});