Problem with fadeIn (or toggle) on .click

Problem with fadeIn (or toggle) on .click

I'm using jquery in my IPB forum and i had no problem at all using jQuery.noConflit

But now i'm having issues with e fadeIn function

I have a <a> element, id='fadein' and a div, named 'network' which comes with a display:none attribute.

My idea was to call the fadeIn function when pressing the <a> element, so my function is

  1. <script>
  2. jQuery.noConflict();
  3. jQuery('#fadein').click(function() {
  4.       $('#network').fadeIn('slow', function() {
  5.         // Animation complete
  6.       });
  7.     });
  8. </script>

and it doesn't work... why does it happens?

It looks quite simple...

Thank you