here is the code:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".toexpand").next().hide();
jQuery(".toexpand ul:first").slideToggle();
jQuery(".toexpand").click(function () {
jQuery(this).next().slideToggle('medium');
});
});
</script>
I like to start all the ul next to the .toexpand collapse, BUT NOT THE FIRST ONE... my code dont work, why ?