
function init_show_race_fees() {
	
	$('.show-race-fees').click(function () {
		
		var race_id = $(this).data('race-id');
		
		$.get('/ajax/get_event_race_fees', {"race_id": race_id}, 
			function (response) {
				
				//$('#online-entry-fees-dialog').html(response);				
				
				$('<div></div>').html(response).dialog({
					modal: true,
					width: 600,
					buttons: { "Close" : function () { $(this).dialog('close'); } }
				});
				//$('#online-entry-fees-dialog').dialog('open');
			}
		);
		
	});
	
}


$(document).ready(function(){
	
	init_show_race_fees();
});
