function ttShowIconTip(item, icon, iconWidth) {
    var toolTipHeadline = '';
    var toolTipText     = '';
    
    switch (icon) {
        case 1 :
            toolTipHeadline = 'LTI Hotels';
            toolTipText     = 'Erholung für alle Sinne.';
            break;
            
        case 2 :
            toolTipHeadline = 'CLUB CALIMERA';
            toolTipText     = 'Herzlich und unbek&uuml;mmert.';
            break;
            
        case 3 :
            toolTipHeadline = 'Iberostar';
            toolTipText     = 'An den sch&ouml;nsten Str&auml;nden der Welt.';
            break;
        
        case 4 :
            toolTipHeadline = 'Fr&uuml;hbucher';
            toolTipText     = 'Erm&auml;&szlig;igung durch fr&uuml;hes Buchen.';
            break;
        
        case 5 :
            toolTipHeadline = 'Urlaub mit Kindern';
            toolTipText     = 'Besonders kinderfreundliche Ausstattung und spezielle Erm&auml;&szlig;igungen.';
            break;
        
        case 6 :
            toolTipHeadline = 'Direkt am Strand';
            toolTipText     = 'N&auml;her am Meer geht nicht.';
            break;
        
        case 7 :
            toolTipHeadline = 'Fitness';
            toolTipText     = 'Vielf&auml;ltige Angebote für Sportbegeisterte.';
            break;
        
        case 8 :
            toolTipHeadline = 'ITS Red Star Award';
            toolTipText     = 'Die beliebtesten ITS-Hotels weltweit pr&auml;miert.';
            break;
            
        case 9 :
            toolTipHeadline = 'Unser Tipp';
            toolTipText     = 'Die Hotel-Empfehlung der Reiseexperten.';
            break;
			
        case 10 :
            toolTipHeadline = 'Wellness';
            toolTipText     = 'Besondere Leistungsangebote im Bereich Gesundheit, Schönheit und Fitness.';
            break;			
        
        default :
            toolTipHeadline = '';
            toolTipText     = '';
            break;
    }
    
    if ($_('hotelIconDescription') == null || typeof($_('hotelIconDescription')) == 'undefined') {
        var offerTipDiv = document.createElement('div');
        var offerTipDiv_id = document.createAttribute('id');
        offerTipDiv_id.nodeValue = 'hotelIconDescription';
        offerTipDiv.setAttributeNode(offerTipDiv_id);
        var offerTipDiv_class = document.createAttribute('class');
        offerTipDiv_class.nodeValue = 'ttHotIconTipp';
        offerTipDiv.setAttributeNode(offerTipDiv_class);
        document.body.appendChild(offerTipDiv);
    }
    
    var strAusgabe = '<div class="ttDiv1LT ttIePngFix"><img src="/images/spacer.gif" alt="" border="0" width="1" height="1" /></div>'
                   +  '<div class="ttIconTippCT ttIePngFix"><img src="/images/spacer.gif" alt="" border="0" width="1" height="1" /></div>'
                   +  '<div class="ttDiv1RT ttIePngFix"><img src="/images/spacer.gif" alt="" border="0" width="1" height="1" /></div>'
                   +  clearBothDiv
                   +  '<div class="ttDiv1LM ttIePngFix" style="height: 80px;"><img src="/images/spacer.gif" alt="" border="0" width="1" height="1" /></div>'
                   +  '<div class="ttIconTippCM ttIePngFix" style="height: 80px;">'
                   +      '<div class="ttIconTippContainer">'
                   +          '<div class="ttIconTippBody">'
                   +              '<div class="ttIconTippHeadline">'
                   +                  '<div class="ttIconTippHeadlineTitle">' + toolTipHeadline + '</div>'
                   +                  '<div class="ttIconTippHeadlineClose" onclick="document.getElementById(\'hotelIconDescription\').style.display=\'none\';" title="schließen">x</div>'
                   +                  clearBothDiv
                   +              '</div>'
                   +              clearBothDiv
                   +              '<div class="ttIconTippContent">'
                   +                   toolTipText
                   +               '</div>'
                   +          '</div>'
                   +      '</div>'
                   +  '</div>'
                   +  '<div class="ttDiv1RM ttIePngFix" style="height: 80px;"><img src="/images/spacer.gif" alt="" border="0" width="1" height="1" /></div>'
                   +  clearBothDiv
                   +  '<div class="ttDiv1LB ttIePngFix"><img src="/images/spacer.gif" alt="" border="0" width="1" height="1" /></div>'
                   +  '<div class="ttIconTippCB ttIePngFix"><img src="/images/spacer.gif" alt="" border="0" width="1" height="1" /></div>'
                   +  '<div class="ttDiv1RB ttIePngFix"><img src="/images/spacer.gif" alt="" border="0" width="1" height="1" /></div>'
                   +  clearBothDiv;
    
    $_('hotelIconDescription').innerHTML = strAusgabe;
    
    var pos = getPosition(document.getElementById(item));
    
    $_('hotelIconDescription').style.left = (pos.x - 285 + iconWidth) + 'px';
    $_('hotelIconDescription').style.top  = (pos.y - 94) + 'px';
    
    $_('hotelIconDescription').style.display = 'block';
}

