/*
 * List Ticker by Alex Fish
 * www.alexefish.com
 */
(function(a){a.fn.list_ticker=function(b){var c={speed:4000,effect:"slide"};var b=a.extend(c,b);return this.each(function(){var e=a(this);var d=e.children();d.not(":first").hide();setInterval(function(){d=e.children();d.not(":first").hide();var g=d.eq(0);var f=d.eq(1);if(b.effect=="slide"){g.slideUp();f.slideDown(function(){g.remove().appendTo(e)})}else{if(b.effect=="fade"){g.fadeOut(function(){f.fadeIn();g.remove().appendTo(e)})}}},b.speed)})}})(jQuery);

