(function($){
  jQuery.fn.ticker = function(){
    $(this).animate( {marginTop: '-19px'}, 800, function(){
      $(this).detach().appendTo('ul#ticker').attr('style','');
      $('#ticker li:first').delay(4000).ticker();
    });  
  }; 
})(jQuery);

jQuery(function($){
  $('#ticker li:first').delay(4000).ticker();    
});
/*var $jq = jQuery.noConflict();
var ticker = function()
{
setTimeout(function(){
$jq('#ticker li:first').animate( {marginTop: '-19px'}, 800, function()
{
$jq(this).detach().appendTo('ul#ticker').attr('style','');
});
ticker();
}, 4000);
};
ticker();*/



