$(document).ready(function() {
  
  // initialize the lightboxes
  $('a.lightbox').fancybox({
    frameWidth: 600,
    frameHeight: 400,
    hideOnContentClick: false
  });
  
  // show the second name field on the login page
  $('#name2').hide().parent().append("<span id=\"add-second-name\" style=\"font-weight: bold; font-size: 11px; padding-left: 10px; cursor: pointer;\">Enter Second First Name, If Any</span>");
  $('span#add-second-name').click(function() {
    $('#name2').show();
    $(this).hide();
  });
  
  // track showcases
  //$('a.track').trackclick();
});