function list_show(id) {
	jQuery("#" + id).animate( {
		opacity : 'show'
	}, 500);
	jQuery("#" + id + "_show").hide();
	jQuery("#" + id + "_close").show();
}

function list_close(id) {
	jQuery("#" + id).animate( {
		opacity : 'hide'
	}, 500);
	jQuery("#" + id + "_show").show();
	jQuery("#" + id + "_close").hide();
}

