window.addEvent('domready', function() {
	// HERE IS WHAT YOU READ IN JS CODE
	/**/
	loadTips();
	/**/
});	

function loadTips() {
	var Tips2 = new Tips($$('.Tips2'), {
		className: 'custom',
		offsets: {'x': 10, 'y': 0}
	});
	var Tips3 = new Tips($$('.Tips3'), {
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(1);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		},
		className: 'tool',
		fixed: true,
		offsets: {'x': 165, 'y': -40}
	});
	var Tips4 = new Tips($$('.Tips4'), {
		className: 'custom'
	});
}

function loadNewTips() {
	var Tips22 = new Tips($$('.Tips22'), {
		className: 'custom',
		offsets: {'x': 10, 'y': 0}
	});
}