 $(document).ready(function(){
  $('.randomRotatingList').innerfade({ animationtype: 'fade',	speed: 'normal', timeout: 10000,	type: 'random_start', containerheight:'auto' });
  
  // Find external links and open them in a new window
  $("a:not([@href*=dalescott.com])[@href^='http']").addClass("ExternalLink").click( function(){
    window.open( $(this).attr('href') );
    return false;
  });
    
  // Find PDF links and open them in a new window
  $("a[href$='.pdf']").addClass("ExternalLink").click( function(){
    window.open( $(this).attr('href') );
    return false;
  });
    
});
