jQuery(function($) {

	/* RSVP Form - display necessary guest fields */
    $('#guests').change(function(){
        var value = $(this).val();

        $(this).closest('div').nextAll('div').hide();        
        if(value == 'Yes') {
           $('#one_guest').show();
        }
    }).change();

	/* RSVP Form - display necessary food preference fields */
    $('#diet').change(function(){
        var value = $(this).val();

        $(this).closest('p').nextAll('p').hide();        
        if(value == 'Food allergies') {
           $('#food_allergies').show();
        } else if (value == 'Other') {
           $('#other_preference').show();
        }
    }).change();

	/* Navigation Sub-nav Drop-down */
	$('li#travel_link').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });

});
