// locations.view.js

$(document).ready(function() {
	
	$('#content .accordion li').each(function() {
		if($(this).find('.description').html() || $(this).find('.address').html()) {
			$(this).addClass('toggable');
			
			$(this).find('.header').click(function() {
				if($(this).next().css('display') == 'none') {
					$('#content .accordion li .body:visible').each(function() {
						$(this).slideUp(300);
					});
					
					$(this).next().slideDown(300);
				} else {
					$(this).next().slideUp(300);
				};
			});
		}
	});
});
