$(function(){

				//expansor
				$(".accordion h4").click(function(){
					var details = $(this).parent().toggleClass("module-table-active");
					details.children(":first").next().toggle();
					$(this).toggleClass("module-table-active");
					});
				$(".accordion .variable:not(:first)").hide();
				$(".accordion h4:first").parent().addClass("module-table-active");
				$(".accordion h4:first").removeClass("ui-state-default");
				
				//zebra striper
				$(".zebra tbody tr:even").addClass("alt");
			});
