$(function() {
  $('a[rel=external]').click(function() {
    var newWindow = window.open($(this).attr('href'), '_blank');
    if(newWindow) { if(newWindow.focus) { newWindow.focus(); return false; } }
    newWindow = null;
  });
  
  $('#photo img:gt(0)').hide();
  setInterval(function(){ $('#photo :first-child').fadeOut().next('img').fadeIn(350).end().appendTo('#photo'); }, 3500);
});