
dw_Tooltip.defaultProps = {
    sticky: true,
    showCloseBox: true,
    //closeBoxImage: 'images/close.gif',
    closeBoxImage: 'http://i2.esmas.com/ventas/images/x.gif',
    followMouse:true,
    positionFn: dw_Tooltip.positionRelEventCeleb
    //positionFn: dw_Tooltip.positionWindowCenter
    
    // using other wrapFn's for each link (they can all do sticky with close box and caption too)
    // If all the tooltips use the same wrapFn, specify it here 
    //wrapFn: dw_Tooltip.wrapSticky (using wrapSticky directly doesn't allow other props like caption, width, etc.)
}

dw_Tooltip.content_vars = {
    L1: {
        str: 'Hello <a href="">from</a> link 1',
        w: 120,
        followMouse:true,
        wrapFn: dw_Tooltip.wrapToWidth
    }, 
    L2: {
        caption: 'A Heron',
        img: 'images/heron.gif',
        txt: 'A heron image <a href="">created from</a> a character font.',
        wrapFn: dw_Tooltip.wrapTextByImage,
        w: 210
    }, 
    L3: {
        w: 100,
        h: 100,
        img: 'images/heron.gif',
        wrapFn: dw_Tooltip.wrapImageToWidth
    },
    L4: {
        w: 136,
        h: 120,
        img: 'images/popup_banner.gif',
        wrapFn: dw_Tooltip.wrapImageToWidth
    },
    Celebra: {
        str: '<a href="http://www.youtube.com/cocacola?x=current_locale--es-MX"><img src="http://i2.esmas.com/ventas/images/popup_banner_s.png" border="0"></a>',
        w: 136,
        h: 140,
        wrapFn: dw_Tooltip.wrapToWidth
    }
}


