$(document).ready(function(){
// Copyright (c) 2007 42 Answers Creative Internet Studio. All rights reserved.
// No reproduction or republication without exclusive written permission from owner.
// http://42answers.com/

  //  decrypt emails
  $(document).emailDecrypter();

  //  opens [rel=external] links in new window
  $("a[@rel=external]").each(function(i){
    this.target="_blank";
  });

  // Select all links that contains lightbox in the attribute rel
  $('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel

  //  Go back function for 404 page
  $("a#goBack").click(function(){
    history.back();
  });

});

