[jQuery] Mixing two effects

[jQuery] Mixing two effects


Hello everybody,
after hearing about JQuery i am now plungin in and i really like the
possibilities of jquery.
I'm trying to get the next result and i'm not sure if its possible. I
want a div to go down with an image and go up after x seconds and go
down with a new image. I tried animated.innerfade and getting a div go
up and down with:
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready( function() {
jQuery(".klikdiv").toggle(function(){
jQuery("#downdiv").slideDown("slow");
},function(){
jQuery("#downdiv").slideUp("slow");
});
});
</script>
But somehow these two didn't work together. I know that then the div
only would slide when a link was clicked, but i wanted to try to get
that effect out later.
My question is if this is possible and maybe someone knows a better
way of doing it or a plugin with this effect. Its an effect you see in
Flash, but of course using jquery would be so much better :-)
Greetings,
Joris