$(document).ready( 
  function(){ 
    $('#top_slideshow .slideshow div').innerfade(
      { 
        animationtype: 'slide', 
        speed: 1000, 
        timeout: 5000, 
        type: 'sequence' 
      }
    );
    
    $('#bottom_slideshow .slideshow div').innerfade(
      { 
        animationtype: 'slide', 
        speed: 1000, 
        timeout: 5000, 
        type: 'sequence' 
      }
    );
  }
); 