$(function() {
    $(".wrap").each(function() {
        if($(this).height() < $(this).children("a").children("img").height())
            $(this).css({minHeight:$(this).children("a").children("img").height()});
    })
    
    if($.browser.msie && parseInt($.browser.version)<8) {
        $(".header").css({left:0, top:38});
        //$(".wrap p").css({width:350});
    }
    
    $("#imagemap").hover(function() {
        $(".header").css("background-position", "0px -204px");
    }, function() {
        $(".header").css("background-position", "0px 0px");
    });
    
    $("#prbox").css("min-height", $("#rcont").height() - 20);
    if($.browser.msie && parseInt($.browser.version)==6) {
        $("#prbox").css({
            minHeight:$("#rcont").height() + 20,
            height:"auto !important",
            height:$("#rcont").height() + 20
        });
    }
    
});