jQuery(document).ready(function($) {
	
	//Check the category boxes on the initial load
	switchCategoryBoxes();
	
	jQuery('select#menu-item-type-select').change(function() {
		
		//Switch the category boxes when the option value has changed
		switchCategoryBoxes();
	
	});
	
	function switchCategoryBoxes() {
	
		var value = jQuery("select#menu-item-type-select option:selected").val();
		
		if(value == "0") {
			
			jQuery('#entree-categories').css('display', 'block');
			
			jQuery('#food-price').css('display', 'block');
			
			jQuery('#drink-categories').css('display', 'none');
		
		} else {
			
			jQuery('#entree-categories').css('display', 'none');
			
			jQuery('#food-price').css('display', 'none');
			
			jQuery('#drink-categories').css('display', 'block');
		
		}
	
	}

});