	/*
	* File: techniques.js
	* Custom logic for the page: techniques
	*/

	$(document).ready(function () {

		// left navigation
		//$("div.left_menu_item").find("a").each(function () {
		//	$(this).attr("href", "javascript:void(0);");
		//});

		$("div.arrow").click(function () {
			var catID = $(this).attr("rel");
			$("#lmSubs_" + catID).slideToggle();
		});

	});

