$(document).ready(function() {    
	if ($('#resEnquiry').is(':checked')){
  		$('#Comment').hide();
		$('#Event').hide();
		$('#Reservation').show();
	}else if($('#eventEnquiry').is(':checked')){
		$('#Reservation').hide();
		$('#Comment').hide();
		$('#Event').show();
	}else {
		$('#Reservation').hide();
		$('#Event').hide();
		$('#Comment').show();
	};
	
	$('#resEnquiry').click(function(){
	   $('#Comment').hide();
	   $('#Event').hide();
	   $('#Reservation').slideDown("slow");
    });
	$('#eventEnquiry').click(function(){
	   $('#Comment').hide();
	   $('#Reservation').hide();
	   $('#Event').slideDown("slow");
    });
	$('#genEnquiry').click(function(){
	   $('#Reservation').hide();
	   $('#Event').hide();
	   $('#Comment').slideDown("slow");
    });

	$('#imageDatepicker').datepick({minDate: +1, maxDate: +365, showOn: 'both', dateFormat: 'DD, MM d, yy',
    	buttonImageOnly: true, buttonImage: '/script/datepick/calendar.gif'
	});
});
