	  $(document).ready(function() {
				 
		$(".leftmenu ul li a").click(function () { 	
			if ($(this).parent().is(":has(ul)")) {
			  if ($(this).hasClass("active")==false) $(this).parent().find("ul:first").slideDown();
			  else $(this).parent().find("ul:first").slideUp();			  
			  $(this).toggleClass("active");			  
			  return false;
			}			  
			else return true;
		});
		$("input[type=checkbox]").click(function () {
			$(this).parent().toggleClass("On");
			$("tr").css("background-color", "#bbbbff");
		});	

	 });