function SetTipStorage(element) {
	// create an array including the title at
	// position 0 and the text at position 1
	var content = element.get('title').split('::');   
	// use the element storage functionality 
	// to store the title and text for the 
	// specified element
	element.store('tip:title', content[0]);   
	element.store('tip:text', content[1]);
	// remove the element title
	element.title = '';
}

window.addEvent('domready', function() {
	if($$('.toolTipImg')) {
		$$('.toolTipImg').each(
			function(tooltip) { SetTipStorage($(tooltip)); }
		);
		var myTips = new Tips('.toolTipImg', {
				fixed: false,
				showDelay: 0,
				hideDelay: 0
		});
	}
});