/*
 * NGIS Design template
 *
 * @author NGIS Design virtuemartjoomlatemplates.com
 * @copyright Copyright (C) 2008 NGIS Design. All rights reserved.
 */

window.addEvent('domready', function(){
   var zoomTip = new Tips($$('.ngis-browse-product-image'), {
      className: 'custom',
      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);
      }
   });
});