/*if ($.browser.msie && $.browser.version.substr(0,1)<7) {
    $(".layout-body").ready(function(){
        //$(".layout-body .bg-panels .ie-wrapper").css('height', $(".layout-body .bg-panels").closest(".layout-body").height()+"px");
        
        $(".layout-body").resize(function(){
            $(".layout-body .bg-panels .ie-wrapper").height($(this).height()+"px");
            //a hack for fucking IE render bug - part 1 (beggining)
            //applying border for height changes were rendered and showed
            $(".layout-body .bg-panels .ie-wrapper").css("border", "1px solid red");
        });
        
        //a hack for fucking IE render bug - part 2 (ending)
        //removing border as it not needed
        $(".layout-body .bg-panels .ie-wrapper").resize(function(){
            $(".layout-body .bg-panels .ie-wrapper").css("border", "none");
        });
    });
}*/