eat.supportFeedback = {    
    init: function() {
		var self = this;
		
    	$('#verify').val('salakala');
		
    	$('#type').bind('change', function() {
			if($(this).val()=='restaurant') {
				self.hideComment();
			}
			else {
				self.showComment();
			}
		});
    },
	
	hideComment: function() {
		$('#comment-form').hide();
		$('#restaurant-info').show();
	},
	
	showComment: function(obj) {
		$('#restaurant-info').hide();
		$('#comment-form').show();
		obj.checked = false;
	}
};

$(document).ready(function() {
	eat.supportFeedback.init();
});
