JQuery Endless Loop

JQuery Endless Loop

I am trying to use slideDown or show on click, and the div slides down, but when the animation is finished, it immediately slides back up. Any ideas?

I have to use jquery noconflict in this code...

$jquery = jQuery.noConflict();
$jquery(document).ready(function() {
$jquery('.comments-slider').hide();
$jquery('.comments-link').click(function() {
$jquery('.comments-slider').slideDown('slow');


});
});