	
window.addEvent( 'domready', function(){
 $$( '.post' ).each(function(item){
  var thisSlider = new Fx.Slide( item.getElement( '.entry' ), { duration: 1000 } );
  thisSlider.hide();
  item.getElement( '.postinfo' ).addEvent( 'click', function(){ thisSlider.toggle(); } );
 } );
 

} );	