gapWrapper = {
	push : function(params) {
//		_gaq.push(params);
	},
	
	//bet handles it internally ..
	selectNumbers : function(game) {
		this.push(['_trackPageview', '/' + game + '/Select']);
	},
	
	verify : function(game) {
		this.push(['_trackPageview', '/' + game + '/Confirm']);
	},
	
	play : function(game, info) {
		this.push(['_trackPageview', '/' + game + '/Purchase']);

		this.push(['_addTrans',
								info.id,
								info.aff,
								info.cost,
								'',
								'',
								'',
								'',
								''
							]);
 
//			this.push(['_addItem',
//								info.id,
//								info.secondArrayTmp,
//								info.thirdArrayTmp,
//								info.fourthArrayTmp,
//								info.fifthArrayTmp,
//								info.sixthArrayTmp
//			]);
		
		
		this.push(['_trackTrans']);
	}

}

