<script type="text/javascript">
	$(function ()
	{
		$('a[data-menu-level]').click(function ()
		{
			$.ajax(
			{
				url : '<?php echo G5_ADMIN_URL; ?>/amina_menu_statistic/statistic.php',
				data : {
					action : 'click',
					gr_id : $(this).data('gr-id'),
					hid : $(this).data('menu-hid'),
					level : $(this).data('menu-level'),
					botable : $(this).data('botable'),
					category : $(this).data('category')
				},
				type : 'POST',
				async : true,
				cache : false,
				complete : function (xhr)
				{
				}
			});
		});
	});
</script>