$(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/


  //  opens [rel=external] links in new window
  $("a[@rel=external]").each(function(i){
    this.target="_blank";
  });

  //  Carousel defs
  $('#rotator').innerfade({
    speed: 750,
    timeout: 5000,
    animationtype: 'fade',
    type: 'sequence',
    containerheight: '56 px'
  });

});
