XB.Announcer.subscribe('onBodyEnd', function(){
	// select buttons
	try {
		bonusTableNode = XB.getElementsByClass('bonustable', 'table')[0];
		trObjArr = bonusTableNode.getElementsByTagName('tbody')[0].getElementsByTagName('tr');
		var l = trObjArr.length;
		for (var i = 0; i < l; i++) {
			trObj = trObjArr[i];
			aBonusObj = XB.getElementsByClass('bonus', 'a', trObj)[0];
			bonusCode = aBonusObj.firstChild.nodeValue.toUpperCase();
			aButtonObj = XB.getElementsByClass('button', 'a', trObj)[0];

			var url =
			'https://wp.egalacoral.com/oacasino.go?lang=20&stage=100&ms=MS&p_show=&channel=sb&p_ref=' + bonusCode;
			var onClick = function() {
				popUp(this, 'console', 600,600);
				return false;
			}
			aBonusObj.href = aButtonObj.href = url;
			aBonusObj.onclick = aButtonObj.onclick = onClick;
		}
	} catch(e) {}	
});