^ i used this code dale
[quote]if ( ! attachOnLoadHandler(function () { moveBox();}))
window.onload = function () {
moveBox();};
function moveBox() {
var x; var t;
t = document.getElementById("10"); //the box to be moved
x = document.getElementById("tracker").parentNode;
x.parentNode.insertBefore(t,x);
}[/quote]