(function($){
$.fn.listticker=function(o){
	var opt=$.extend({showtime:2500,hidetime:1000},o),obj=$(this)
	animate()
    function animate(){
        setTimeout( function(){
            var cur=$('li:first-child',obj)
            cur.fadeOut(opt.hidetime,function(){
                obj.append( cur.detach().show() )
                animate()
            })
        },opt.showtime)
    }
}
})(jQuery);

