  function prova()
      {
        if($('disable1'))
        {
        new Tip($('disable1'), '<p onmouseout="Tips.hideAll();">Servizio "Primi Posti" non attivo</p>',
        {
          title: 'Disabilitato',
          hook: { tip: 'topMiddle', mouse: true },
          offset: { x: 0, y: 0 },
          width: 200,
          hideOn: false
        });
        }

if($('disable2'))
        {
        new Tip($('disable2'), '<p onmouseout="Tips.hideAll();">Servizio "Primi Posti" non attivo</p>',
        {
          title: 'Disabilitato',
          hook: { tip: 'topMiddle', mouse: true },
          offset: { x: 0, y: 0 },
          width: 200,
          hideOn: false
        });
        }

if($('disable3'))
        {
        new Tip($('disable3'), '<p onmouseout="Tips.hideAll();">Servizio "Primi Posti" non attivo</p>',
        {
          title: 'Disabilitato',
          hook: { tip: 'topMiddle', mouse: true },
          offset: { x: 0, y: 0 },
          width: 200,
          hideOn: false
        });
      }
	  
	  }
	  
	   function businessToolTip()
    {
      new Tip($('areaFree'), '<img onmouseout="Tips.hideAll();" src="http://www.pagine-mail.it/images/area_free_big.gif" alt="Scheda gratuita"/>',
      {
        title: 'Scheda gratuita',
        hook: { tip: 'topMiddle', mouse: true },
        offset: { x: 0, y: -110 },
        hideOn: false,
        className: 'silver'
      });

      new Tip($('areaBusiness'), '<img onmouseout="Tips.hideAll();" src="http://www.pagine-mail.it/images/area_business_big.gif" alt="Scheda Primi Posti"/>',
      {
        title: 'Scheda "Primi Posti"',
        hook: { tip: 'topMiddle', mouse: true },
        offset: { x: 0, y: -110 },
        hideOn: false,
        className: 'silver'
      });
    }