
jQuery(document).ready(function() {    
    //&& jQuery.browser.version == "6.0"
    var val = jQuery(top.frames[0].parent.document.getElementById("homeContent")).attr("custom");
    if (jQuery.browser.msie == true) {
        if (val != "true") {            
            var height = (parseInt(document.body.clientHeight, 10) - 2);
            jQuery(top.frames[0].parent.document.getElementById("homeContent")).css("height", height.toString());
            jQuery(top.frames[0].parent.document.getElementById("homeContent")).attr("custom", "true");
        }
    }
    else {
//        if (val != "true") {
//            alert('hello mozilla');
//            var height = parseInt(document.body.clientHeight, 10);
//            jQuery(top.frames[0].parent.document.getElementById("homeContent")).css("height", height.toString());
        //        }
        //alert(jQuery(top.frames[0].parent.document.getElementById("homeContent")).css("height") + " document h:" + document.body.clientHeight);
    }
    
});        

