[jQuery] reinstanciate plugin after Ajax page update

[jQuery] reinstanciate plugin after Ajax page update


Hey guys,
I came across this problem a few times and I'm sure there is an easy
fix.
Well...
THE PROBLEM
------------------------
on bottom of a certain HTML page I call a jQuery plugin, let's say
cluetip or fancybox.
as follows
<script type="text/javascript" src="/js/shared/
jquery.fancybox-1.0.0.js"></script>
<script trype="text/javascript">
jQuery('a[@rel*=fancybox]').fancybox();
</script>
Everything works fine... since I don't append something on the page
after an Ajax request, that needs fancybox again.
It's like, in this case, fancybox, doesn't notices the new element in
the page with the attribute <a ... rel="fancybox">my item</a>
How can I then I guess "reinstanciate" the plugin?
Cheers in advance!
Dan