// JavaScript Document
//  multiple tooltips on page
//  stefan rademakers , 2007
//  info@stefanrademakers.nl

		window.addEvent('domready', function(){
		  //itterate over all the tip styles
  			var dizzieTip = new Tips($$('.dizzieTip'), {
  				initialize:function(){
  					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
  				},
  				onShow: function(toolTip) {
  					this.fx.start(.93);
  				},
  				onHide: function(toolTip) {
  					this.fx.start(0);
  				}
  			});
		}); 

		window.addEvent('domready', function(){
		  //itterate over all the tip styles
  			var dizzieTip = new Tips($$('.dizzieTipHTML'), {
  			  className: 'zoMaarWatEmptyStyle',
  				initialize:function(){
  					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
  				},
  				onShow: function(toolTip) {
  					this.fx.start(.93);
  				},
  				onHide: function(toolTip) {
  					this.fx.start(0);
  				}
  			});
		}); 


		window.addEvent('domready', function(){
		  //itterate over all the tip styles
  			var dizzieTip = new Tips($$('.dizzieTipWide'), {
  				initialize:function(){
  					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
  				},
  				onShow: function(toolTip) {
  					this.fx.start(.93);
  				},
  				onHide: function(toolTip) {
  					this.fx.start(0);
  				}
  			});
		}); 

