// --------------------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------------------------------------
// behaviours - manages display and hide of explore bar links;
// depends: 	jQuery library;
// author:		ah;
// --------------------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------------------------------------

(function exploreBar() {
	$('.explore h2').click(function () {
		  $('.explore ul.nav').toggle();
		  $('.explore h2').toggleClass('open');
		});
})();

// --------------------------------------------------------------------------------------------------------------------------------
// --- end of file --- 
// --------------------------------------------------------------------------------------------------------------------------------
