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