$(function() {
		   
	$('.toggler').click(function (){
		if( $(this).next().is(":hidden") ){						  
			$('.res_data').slideUp();
			$(this).next().slideDown();
			$(this).nextAll().filter('.res_summary').slideDown();
		}
	})
	
	$('#first_cat_item').slideDown();
	$('#first_res_title').slideDown();
	
	$('.res_title').click(function (){
		if( $(this).next().is(":hidden") ){	
			$('.res_summary').slideUp();
			$(this).next().slideDown();
		}
	})

});

