// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function toggleListVisibility(list_id) {
		var element = $(list_id)
		if (element.style.display == 'none') {
			new Effect.BlindDown(element, arguments[1] || {});
		} else {
			//element.className=element.className.replace(new RegExp(" hidden"), "");
			new Effect.BlindUp(element, arguments[1] || {});
		}
	}
