var $j = jQuery.noConflict();
$j(document).ready(function() {
    //sizeIFrame();
    //$j("#dnn_ctr479_IFrame_htmIFrame").load(sizeIFrame);
    $j('#homeNav > ul > li a').addClass("typeface-js");
    $j('#dnn_dnnSEARCH_txtSearch').val('Search'); //add the search text to the search input
    $j("#dnn_dnnSEARCH_txtSearch").focus(function() { //clear the default text out of the search input
        if ($j(this).val() == "Search") {
            $j(this).val('');
        }
    });
    

});

function sizeIFrame() {

    var helpFrame = $j('#dnn_ctr479_IFrame_htmIFrame');
    if (helpFrame != '') {
    var innerDoc = (helpFrame.get(0).contentDocument) ? helpFrame.get(0).contentDocument : helpFrame.get(0).contentWindow.document;
    helpFrame.height(innerDoc.body.scrollHeight + 35);
    }
}


