//     =============================================
//
//     SLIDE THE NAVIGATION OPEN
//     ---------------------------------------------
//
//     By Chris Hill-Scott, except where noted.
//
//     Code is public domain, reuse as desired.
//
//     Requires jQuery
//
//     ---------------------------------------------
//
//     TODO:
//
//     =============================================

jQuery.fn.slidingPanel = function() {

	// Behave well, return the jQuery object
	return this.click(
		function() {

			var $bar = $(this),
				$link = $bar.children("a"),
				$panel = $bar.siblings("div");

			$link
				.html($panel.is(":hidden") ? "close &emsp;&#9660;" : $link.attr("title"))
				.blur();

			$panel
				.slideToggle("fast");

			return false;

		}
	);

}


