window.addEvent( 'domready', function(){
 $$( '.profilewrapper' ).each(function(item){
  var thisSlider = new Fx.Slide( item.getElement( '.profile' ), { duration: 500 } );
  thisSlider.hide();
  item.getElement( '.toggle' ).addEvent( 'click', function(){ thisSlider.toggle(); } );
 } );
} );