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

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

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