function pullDescription(id) {
	// Effect.BlindDown('row' + id);
	var rowid = 'row' + id;
	if ($("row" + id).style.display == "none") {
		Effect.BlindDown('row' + id);
	} else {
		Effect.BlindUp('row' + id);
	}
	var t = setTimeout("$('" + rowid + "').style.height='auto';", 1100);
}

function pullFacilitator(wid, fid) {
	/*
	 * $$(".workshop" + wid).each(function(element) { if (element.style.display =
	 * "none") Effect.BlindUp(element); });
	 */
	// Effect.BlindDown('row'+wid+'fac'+fid);
	var id = 'row' + wid + 'fac' + fid;
	if ($('row' + wid + 'fac' + fid).style.display == "none") {
		Effect.BlindDown('row' + wid + 'fac' + fid);
	} else {
		Effect.BlindUp('row' + wid + 'fac' + fid);
	}
	var t = setTimeout("$('" + id + "').style.height='auto';", 1100);
	// $(id).style.height='auto';
}

function closePull(id) {
	Effect.BlindUp(id);
	var t = setTimeout("$('" + id + "').style.height='auto';", 1100);
}

function loadWorkshops(type) {
	if (type === null) {
		type == 'sessionasc';
	}
	new Ajax.Updater($('workshopListing'), 'workshops.php', {
		method : 'post',
		parameters : {
			sorter : type
		},
		onComplete : function() {
			sortables_init();
		}
	});
}