$(function() {
  
  $("#flash").flash({
    src: "flash/index.swf",
    width: 900,
    height: 471,
    flashvars: {
      xmlPath: 'flash/main.xml',
      lng: 'est'
    },
    bgcolor: "#000000"
  });
  
  $("a[@href^='http://']:not(.no_auto_link)")
      .addClass("off_site")
      .bind('click keypress', function(event) {
      var code=event.charCode || event.keyCode;
      if(!code || (code && code == 13)) {
          if(pageTracker) {
              var fixedLink = this.href;
              fixedLink = fixedLink.replace(/https?:\/\/(.*)/,"$1");
              fixedLink = '/outgoing/' + fixedLink;
              pageTracker._trackPageview(fixedLink);
          }
      }
  });

});
