// --------------------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------------------------------------
// behaviours - manages display and hide of footer links;
// depends: 	jQuery library;
// author:		mdja;
// --------------------------------------------------------------------------------------------------------------------------------
// --------------------------------------------------------------------------------------------------------------------------------

(function footer() {
	var footer_elj = $('#footer');
	var nav_elj = footer_elj.find('ul.nav');
	footer_elj.find('h2 a').click(function() {
		nav_elj.toggleClass('open');
		$(this).toggleClass('open');
		return false;
	});
})();

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