//jquery stuff
$(document).ready(function() {

	//to show hide side menu items:
	$("#expander").click(function () {
		  $(".subMenuLevel-1").slideToggle("slow");
		  //document.location.href="../brown.html";
		  return false;
		});
	
 //end jquery block  
 });	

