Changing order of Photoshop Layers

I have a multi-layered Photoshop document. For discussion, let’s say that the Layers are A, B, C, D, E. I need to change the order of the layers so that they are A, B, D, E, C (where C would no be the layer closest to the bottom).

Anyone know what command I need to do that? I didn’t see it in the dictionary.

Thanks!

The engineers at Adobe use move to change the layer order for some reason:

tell application "Adobe Photoshop CS2"
	tell current document to move layer "C" to after layer "E"
end tell

You know, I saw the move command… but I thought, why the hell would it be the move command?

But you were right! Thanks a bunch!