jQuery(function($){

  $('a[href^="http://"],a[href^="https://"]')
    .not($('a[href^="http://www.cyberdefense.jp/"]'))
    .not($('a[href^="https://www.cyberdefense.jp/"]'))
    .attr("target","_blank")
    .not($('a:has(img)'))
    .append('&nbsp;<img alt="External" title="External" src="/img/mini_icons/external.png" width="10" height="9" />')
  ;

  var minHeight = 400;
  var minWidth = 600;
  var height = document.documentElement.clientHeight - 300;
  var width = document.documentElement.clientWidth - 300;
  if ( height < minHeight ) { height = minHeight; }
  if ( width < minWidth ) { width = minWidth; }

  $.superbox.settings = {
    boxWidth:  width,
    boxHeight: height,
    closeTxt:  "Close",
    loadTxt:   "Loading...",
    prevTxt:   "Previous",
    nextTxt:   "Next" };
  $.superbox();

});

