$(function(){
	collect_statistic = function(code){
		$.ajax({url: '/statproxy',
			async: false,
			type: 'GET',
			dataType: 'text',
			data: {code: code,
			       items_id: global_items_id,
			       price: $('div#td_tovar_opisanie').children('span#span_tovar_cena').html()},
			success: function(json){
					// nothing to do and analyze
					k = '123';
				 }				
		});
	}
	$('table#vkpay0').click(function(){collect_statistic('wish')});
	$('div.vk_generated_button').find('a').click(function(){collect_statistic('group')});
});

