// JavaScript Document
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

function init() {
if(ns4){
anim = document.broom;
}
else
if (ie4) {
anim = broom.style; 
}
animateit()
}

function animateit() {
anim.left = parseInt(anim.left)-5;
if (parseInt(anim.left) <10)
{ anim.left =675 }
setTimeout("animateit()",50);
}
