/**
 * Javascript functions for LifeLight.tv
 * 
 * @author http://www.fatchip.de
 * @copyright single use license only
 * @version 1.0 2009-08-28
 */

/**
 * function Tooltip shows mouse Over Message
 * 
 * @param e
 * @param content
 * @return
 */
function toolTip(e, content){
    if($('tooltip')){
        $('tooltip').remove();
    }
    if(e){
        tooltip = new Element('div', {
                        id: 'tooltip'
        });
        tooltip.className = 'tooltip';
        tooltip.style.left = (Event.pointerX(e)+20)+'px';
        tooltip.style.top = (Event.pointerY(e)-80)+'px';
        tooltip.innerHTML = content;
        document.body.appendChild(tooltip);
    }
}
