/* 
 *  smoothfade01.js / Bernd Mansberg (2009) / info@noncrease.de
 */

 $(function(){
  setTimeout('smoothfade()',2000);
});

function smoothfade()
{
  $('#smooth li:last')
    .fadeOut(2000, function(){
      $(this)
        .remove()
        .prependTo('#smooth')
        .show();
      
      setTimeout('smoothfade()',2000);
    });
}
