var zindex = 5;
function raise(element)
{
document.getElementById(element).style.zIndex = zindex;
zindex++;
}
Yep. I did it. Simple.
Ooble: You made it more complex than it needed to be. :/
Eryk: They were actually taken from a tutorial. -->
http://www.brainjar.com/dhtml/drag/
Rest of the code is mine.
