//init cufon
function initCufon() {

    $('#content h1, #sidebar .side-box h2, #sidebar .side-box h4, .content .content-block h1').css('visibility', 'visible');
    
    Cufon.replace('#content h1, #sidebar .side-box h2, #sidebar .side-box h4, .content .content-block h1', { fontFamily: 'TradeGothicRg', hover: true });
}

$(document).ready(function () {
    initCufon();
});

function ShowToolTip(tooltipId) {
    window.setTimeout(function () {
        var tooltip = $find(tooltipId);
        //API: show the tooltip
        tooltip.show();
    }, 10);
}
function setFocus(textId) {
    var textArea = document.getElementById(textId);
    try {
        if (textArea) {
            textArea.focus();
            textArea.select();
        }
    }
    catch (e) { }
}   

