/*
 * VERSION: @version $Id: tips.js 2008-04-29 15:00 $
 * PACKAGE: @package Theme Joomla Template - Color Fusion
 * COPYRIGHT: @copyright Copyright (C) 2008 Theme Joomla. All rights reserved.
 * INFO: This is a modified version created specifically for our templates.
 * Please visit our site www.themejoomla.com and read our terms and conditions for more info.
 *
 * SCRIPT: tips.js
 * SCRIPT LICENSE: Dual licensed under the MIT and GPL licenses
 * SCRIPT COPYRIGHT: @copyright Copyright (C) 2008 Theme Joomla. All rights reserved. E & OE
 * SCRIPT CREDITS: script by Gavin Li-Hunt based on mootools Tips (http://demos.mootools.net/Tips) used with Theme Joomla Template - Color Fusion
 */

window.addEvent('domready', function(){
	var tips = new Tips($$('.tips'), {
		initialize:function(){
			this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
		},
		onShow: function(toolTip) {
			this.fx.start(1);
		},
		onHide: function(toolTip) {
			this.fx.start(0);
		}
	});
});