window.addEvent('domready', function() {
	/*** ImageToolTips ***/
	var t = new Tips('.tooltipImg');
	
	t.addEvent('show', function(tip){
		tip.fade('in');
	});
	t.addEvent('hide', function(tip){
		tip.fade('out');
	});
	 
	$$('.tooltipImg').each(function(tip){
		var imgSrc = tip.retrieve('tip:text');
		var imgAlt = tip.retrieve('tip:title');
		tip.store('tip:text', new Element('img',{'src':imgSrc,'alt':imgAlt}));
	});
	
	/*** Ampel ToolTip ***/
	var ampelTip = new Tips('.ampelIndicatorImg');
	ampelTip.addEvent('show', function(tip){
		tip.fade('in');
	});
	ampelTip.addEvent('hide', function(tip){
		tip.fade('out');
	});
	 	$$('.ampelIndicatorImg').each(function(tip){
		var tipText = tip.getParent().getNext('.ce_freeplacesIndicatorLayer').clone();
		tipText.setStyles({position:'relative',left:'0px',top:'0px'});
		tip.store('tip:text', tipText);
	});
	
});
