// JavaScript Document
(function($) {
$(document).ready(function(){
		
			//Hide (Collapse) the toggle containers on load
			$('.dir').hide(); 
			
			//Slide up and down on click
			$('.region').click(function(){
				$(this).next('.dir').animate({opacity: 'toggle', height: 'toggle'}, 1000);
			});
		
		});
	}) (jQuery);
