if (typeof bb == 'undefined') bb = {};

bb.showGuide = function() {
  window.open(bb.contextPath+'/command/viewGuide','guideWindow','width=480,height=600,scrollbars=yes,menu=no,toolbar=no,status=no');
}

bb.showColophon = function() {
  window.open(bb.contextPath+'/command/viewColophon','colophonWindow','width=480,height=600,scrollbars=yes,menu=no,toolbar=no,status=no');
}

$(function(){
  var eml = 'blackboxzbibeaultyorg'.replace(/z/,'@').replace(/y/,'.');
  $('#emailLink').attr('href','mailto:'+eml).text(eml);
  $('#now').text(new Date().getFullYear());
  $('#guideLink').click(function(){ bb.showGuide(); });
  $('#colophonLink').click(function(){ bb.showColophon(); });
});
