$(".hideshow").click(function(){
$(this).next().slideToggle("slow");
return false;
}).next().hide();
<script type="text/javascript">
$(document).ready(function(){
$(".hideshow").click(function(){
$(this).next().slideToggle("slow");
return false;
}).next().hide();
});
</script>