function toggle(el) {
	foo = $(el);
	if (foo.showing !== false) { Effect.BlindUp(el); foo.showing = false;} else {
		Effect.BlindDown(el);foo.showing = true;} 
}