// Call BlindDown or BlindUp to open/close
Effect.ex_ToggleBlind = function(element) {
	if ($(element).style.display == "none") {
		new Effect.BlindDown($(element));
	}
	else {
		new Effect.BlindUp($(element));
	}
}
