﻿$("a[href^='http:']:not([href*='" + window.location.host + "'][target='_blank'])").live('click', function () {
    $(this).attr('target', '_blank');
});

$(document).ready(function () {
    if ($('.pagerightsidecontent') && $('.pagemiddle')) {
        if ($('.pagemiddle').outerHeight() < $('.pagerightsidecontent').outerHeight()) {
            $('.pagemiddle').css("height", $('.pagerightsidecontent').outerHeight());
        }
    }
});
