$(document).ready(function(){
    
	$(".filt").hide();
	
    $(".filtNav h1").click(function(){
	$(this).next('.filt').slideToggle("1000")

});
});