/* author: Sponge Uk */
/* Creation date: 3/6/2009 */
function moving_div_up(value)
{

value--;

if (value<-1000) value = 0;

document.getElementById('moving_div').style.left = value+'px';

setTimeout("moving_div_up("+value+")", 20);

}


