    	var active = false;
	window.addEvent( 'ready', function() {
          var Body = $('body');
          var e = $('browser').getChildsByClass( 'entry' );
          for( var i = 0; i < e.length; i++ )
          {
               var o = e[i];
               o.fx = new Fx( e[i], { 'time' : 200, 'onUpdate' : function() { this.element.style['backgroundPosition'] = ( -16 + this.element.getStyle( 'padding-left' ) ) + 'px center'; } } );
               o.fxIn = o.fx.start.delegate( o.fx, [ { 'background-color' : '#2C2E45', 'color' : '#fff', 'padding-left' : 16 } ] );
               o.fxOut = o.fx.start.delegate( o.fx, [ { 'background-color' : '#131724', 'color' : '#888', 'padding-left' : 0 } ] );
               o.addEvent( 'mouseover', function() {
                    if( active !== false )
                    {
                         active.callEvent( 'mouseout' );
                    }
                    active = this;

                    this.fx.abort();
                    this.fxIn();
               } );
               
               o.addEvent( 'mouseout', function() {
                    if( active == this )
                    {
                         
                         active = false;
                    }

                    this.fx.abort();
                    this.fxOut();
               } );
          }
	} );
