/**
 * @author Admin
 */

function createTooltip() {
var Tips1 = new Tips($$('.Tips1'), {
					className: 'custom_tip',
                    onShow: function(toolTipElement){
                        toolTipElement.fade(1);
                    },
                    onHide: function(toolTipElement){
                        toolTipElement.fade(0);
                    }
                });	
}
 