if ($.browser.msie && top != self) {
    top.location = self.location;
}

$(document).ready(function() {
    /*
     * Open all external links in a new window
     */
    $('a[href^=http]').each(function() {
        if((this.href.indexOf(location.hostname) == -1) && ($(this).attr('target') == undefined)){
            $(this).attr('target', '_blank');
        }
    });  
});

