function bindEventOptions()
{
	$('#show_event_options').click( function () {

		$('#event_options').show('slow');

	});
	
	$('#hide_event_options').click( function () {

		$('input[name=event_interested_duration]').each( function() {
			$(this).attr('checked', '');
			}
		);

		$('input[name=event_interested_location]').each( function() {
			$(this).attr('checked', '');
			}
		);

		$('#event_options').hide('fast');

	});
}