
	window.addEvent('load', function() {
		/* Tips 1 */
		var Tips1 = new mooTips($$('.Tips1'), {
			showOnClick: true,
			showOnMouseEnter: false
		});
		/* Tips 2 */
		var Tips2 = new mooTips($$('.Tips2'), {
			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);
			}
		});
		 
		/* Tips 3 */
		var Tips3 = new mooTips($$('.Tips3'), {
			showDelay: 400,
			hideDelay: 400,
			fixed: true
		});
		 
		/* Tips 4 */
		var Tips4 = new mooTips($$('.Tips4'), {
								   
			className: 'custom',
				initialize:function(){
				this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 250, wait: false}).set(0);
			},
			onShow: function(toolTip) {
				this.fx.start(1);
			},
			onHide: function(toolTip) {
				this.fx.start(0);
			}
		});
	});
