$(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";
  });

  //  Go back function for 404 page
  $("a#goBack").click(function(){
    history.back();
  });

  //  Add click to h1 in header
  $("h1").click(function() {
    window.location.href = "/"
  });

  //  Add click to h1 in header
  $("div#address").click(function() {
    window.location.href = "http://suda.co.uk/projects/microformats/hcard/get-contact.php?uri=http://www.voscon.nl/"
  });

  //  Carousel defs
  $('ul#headerCarousel').innerfade({
    speed: 1250,
    timeout: 5000,
    animationtype: 'fade',
    type: 'sequence',
    containerheight: '181px'
  });

});
