function initsub() {
//    if (typeof initTooltips == 'function') {
//        initTooltips(); 
//    }
    $('a.lightbox').lightBox();
    $('.divCorner').corner();
    $('.divContainerLead').corner();
    $('.divContainer').corner();
    //alert('asd');
    try {
        initpage();
    }
    catch (err) {
    }
}

function DoRollOver(name, over) {
    if (window.document.images) {
        var sExt;
        if (window.document.images[name].src.indexOf('.jpg') > 0) {
            sExt = ".jpg";
        } else {
            if (window.document.images[name].src.indexOf('.gif') > 0) {
                sExt = ".gif";
            } else {
                sExt = ".png";
            }
        }

        if (over)
            window.document.images[name].src = "/sites/pneumacare/images/buttons/" + name + "-hover" + sExt;
        else
            window.document.images[name].src = "/sites/pneumacare/images/buttons/" + name + sExt;
    }
}
