Как сделать так, чтобы по умолчанию список был свернут, а по клику разворачивался?
<script type="text/javascript">
$(function(){
if($('.padder .child table.tours td.tour_title').length < 9) {
$('div.tours').each(function(){
if ($(this).css('display') == 'none') {
$(this).slideDown();
}
});
}
$('.child a.chld_title').click(function(){
$(this).parent().find('div.tours').slideToggle();
return false;
})
})
</script>