Does jquery cycle plugin work with livequery?

Does jquery cycle plugin work with livequery?

I use this code and it's working fine on main page, but it doesn't work when you get new content through ajax (f.i. clicking on 'Recomendados' link)

  1. $('.videoList').livequery(function(){
  2.       $(this).after('<div id="nav">').cycle({
  3. sync: 0,
  4. fx: 'scrollLeft',
  5. pager: '#nav',
  6. pagerAnchorBuilder: function(idx, slide) { 
  7. var imgurl = $(slide).children('div').children('a').children('img').attr('src');
  8. return '<a href="' + imgurl + '" class="imgtip"></a>'; 
  9.                   } 
  10.       });
  11. });