I have a small problem with my jQuery script.
<script language="javascript">
            $(document).ready(function(){
                $('.roll-li').click(function(){
                    if ($('.hideshow').is(":hidden")) {
                        $('.hideshow').slideDown("slow");
                    }
                    else {
                        $('.hideshow').slideUp("slow");
                    }
                });
            });
</script>
How to modify script, so div that div with class "hideshow" that I'm slideing up and down, will be hidden on default?