$(function(){

	$('.toggleDiv').each(function(){
		$(this).hide();
		$(this).prev('.toggleSegue').click(
			function(){
				/*if($(this).next('.toggleDiv').is(":hidden")) {
					$('.toggleDiv').each(function(){
				   	$(this).slideUp('slow');
				   });*/
				  $(this).next('.toggleDiv').toggle('slow');	
				  
				/*}else{
				 $(this).next('.toggleDiv').toggle('slow');
				}*/
		})
		
				
		$(this).children('.toggleClose').click(
			function(){
				$(this).parent('.toggleDiv').slideToggle('slow');
			});
		});
		
});





