$().ready(function(){
	
	// Index
		var initializationTime = new Date();
		
		$('#main-banner').bind('click', function(){
			var nowTime = new Date();
			var thinkingTime = initializationTime.getTime() - nowTime.getTime();
			_gaq.push(['_trackEvent', 'Banner', 'Click', 'Index', thinkingTime]);
		});
	
	// Basket
	
		$('.i-button-delete').bind('click', function(){
			if (!confirm('Удалить?')) {
				return false;
			} else {
				_gaq.push(['_trackEvent', 'Basket', 'Delete Item']);
			}
		}
		
		$('input[name=update]').bind('click', function(){
			_gaq.push(['_trackEvent', 'Basket', 'Update']);
			alert('update');
		});
});
