//
// Default-Einstellungen für die Tooltips
//
 
// Position
    $.fn.qtip.defaults.position = {
        target: 'mouse',
        corner: {
            target: 'topRight',
            tooltip: 'bottomLeft'
        },
        adjust: {
            x: 0,
            y: 0,
            mouse: true,
            screen: true,
            scroll: true,
            resize: true
        },
        type: 'absolute',
        container: false
    };

// Fade-In
    $.fn.qtip.defaults.show = {
      when: {
          target: false,
          event: 'mouseover'
      },
      effect: {
          type: 'fade',
          length: 500
      },
      delay: 100,
      solo: true,
      ready: false
    };

// Fade-Out
    $.fn.qtip.defaults.hide = {
      fixed: true,
      when: {
          target: false,
          event: 'mouseout'
      },
      effect: {
          type: 'fade',
          length: 200
      },
      delay: 100
    };

// Style
    $.fn.qtip.styles.hofmann = {
      overflow: 'hidden',
      tip: {
          corner: 'bottomLeft',
          color: '#FF6702',
          size: {
              width: 8,
              height: 8
          }
      },
      width: 'auto',
      height: 'auto',
      border: {
          width: 1,
          radius: 1,
          color: '#FF6702'
      },
      'font-family': 'Tahoma, Verdana, Arial, Helvetica, sans-serif',
      'font-size': '12px',
      'background': '#eeeeee',
      'padding': '8px 8px 8px 8px',
      'color': '#000000',
      'font-weight': 'normal',
      'margin': '0px 0px 0px 0px'
    };

