// JavaScript Document

$(document).ready(function () {
     if ($.browser.msie) {
          document.execCommand("BackgroundImageCache", false, true);
     }
    $("a[rel=external]").click(function() {
          window.open(this.href);  
          return false;
     })  
});

 