window.addEvent('domready', function(){
var list = $$('.hoverImage');
list.each(function(element) 
{			
	if(element.attributes['src'].value.indexOf('_active') < 0)
	{
	element.addEvent('mouseenter', function()
			{ 
				this.src = this.src.replace("_off","_active");
				//alert('hover');
				//this.src = srcOn;

			});
	element.addEvent('mouseleave', function()
	{ 
				this.src = this.src.replace("_active","_off");
	});	
	}
});
var Tips5 = new Tips($$('.toolTip'), {
	className: 'tool',
	maxTitleChars: '200',
	initialize:function(){
		this.fxFull = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
	},
	onShow: function(toolTip) {
		this.fxFull.start(1);
	},
	onHide: function(toolTip) {
		this.fxFull.start(0);
	}
});	
});
