// add tooltips
//when the dom is ready
window.addEvent('domready', function() {

	
	var tips = $$('.tips').each(function(el,index) {
		var content = el.get('alt').split('::');
		el.store('tip:title', content[0]);
		el.store('tip:text', content[1]);
	});
	
	var toolTips = new Tips($$('.tips'), {
		
		showDelay: 100,    //default is 100
		hideDelay: 1000   //default is 10
	});
	
});
