[jQuery] jquery cycle plugin - displaying certain data problem

[jQuery] jquery cycle plugin - displaying certain data problem


Hello ppl,
I am havim problems with the jquery cycle plugin (http://
www.malsup.com/jquery/cycle/int2.html - the one titles "Callbacks". I
modified it a bit so that it displays my, a bit larger images. Now, I
do not want it to display the code which prints out the code needed
the plugin to work correctly, but can't seem to solve this issue. My
code is as follows:
[BODY HTML CODE]
<div id="main">
<div id="demos">
<table>
<tr>
<td>
<div id="s5" class="pics">
<a href="1.html"><img src="res/images/banner_glavni.gif"
width="540" height="200" alt="Ajduk, Opuzen" /></a>
<a href="2.html"> <img src="res/images/banner_glavni.gif"
width="540" height="200" alt="PODKRAJ - Metković" /></a>
</div>
<pre><code class="mix">
    $('#s5').cycle({
fx: 'scrollLeft',
pause:     '1',
timeout: 4000,
before: onBefore,
after: onAfter
    });
    </code>
</pre>
</td>
</tr>
</table>
</div>
</div>
[/BODY HTML CODE]
I'd like not to display the part:
[BODY HTML CODE]
<pre><code class="mix">
    $('#s5').cycle({
fx: 'scrollLeft',
pause:     '1',
timeout: 4000,
before: onBefore,
after: onAfter
    });
    </code>
</pre>
[/BODY HTML CODE]
...but when I remove that fragment of code the whole thing doesn't
work. Any help is very appreciated, thank you.