/**
* Randivonal tippbox
*/
var CTippbox = new Class({
	request: null,
	initialize: function(){
		this.request = new CmooRequest();
		if ($chk($('ajax_tippreload'))){
			$('ajax_tippreload').addEvent('click', this.tippReload.bind(this));
		}
	},
	tippReload: function(e){
		e.stop();
		this.request.send({}, '/2010_ajaxtippbox.php', this.onLoadComplete.bind(this));
		return false;
	},
	onLoadComplete: function(html){
		$('ajax_tippbox').set('html', html);
	}
});


document.addEvent('domready', function(){
	new CTippbox();
});
