
function moveTopImg() {
    if (document.all) {
	if (document.all.TopBar.style.posTop > pos1) {
		document.all.TopBar.style.posTop = document.all.TopBar.style.posTop - move_increment1;
		setTimeout("moveTopImg()",timeDelay1);
	}
	else if (document.all.TopBar.style.posTop < pos1) {
		document.all.TopBar.style.posTop = document.all.TopBar.style.posTop + move_increment1;
		setTimeout("moveTopImg()",timeDelay1);
	}
    }
    else if (document.layers) {
		document.all.TopBar.style.width = "100px";
        document.TopBar.top  += move_increment1;
    }
}
function moveBotImg() {
    if (document.all) {
	if (document.all.BotBar.style.posTop > pos2) {
		document.all.BotBar.style.posTop = document.all.BotBar.style.posTop - move_increment2;
		setTimeout("moveBotImg()",timeDelay1);
	}
	else if (document.all.BotBar.style.posTop < pos2) {
		document.all.BotBar.style.posTop = document.all.BotBar.style.posTop + move_increment2;
		setTimeout("moveBotImg()",timeDelay1);
	}
	else
		initfade();	//START FADE IN
    }
    else if (document.layers) {
		document.all.BotBar.style.width = "100px";
        document.BotBar.Top  += move_increment2;
    }
}
function moveLeftImg() {
    if (document.all) {
	if (document.all.LeftBar.style.posLeft > pos3) {
		document.all.LeftBar.style.posLeft = document.all.LeftBar.style.posLeft - move_increment3;
		setTimeout("moveLeftImg()",timeDelay1);
	}
	else if (document.all.LeftBar.style.posLeft < pos3) {
		document.all.LeftBar.style.posLeft = document.all.LeftBar.style.posLeft + move_increment3;
		setTimeout("moveLeftImg()",timeDelay1);
	}
    }
    else if (document.layers) {
		document.all.LeftBar.style.width = "100px";
        document.LeftBar.left  += move_increment3;
    }
}
function moveRightImg() {
    if (document.all) {
	if (document.all.RightBar.style.posLeft > pos4) {
		document.all.RightBar.style.posLeft = document.all.RightBar.style.posLeft - move_increment4;
		setTimeout("moveRightImg()",timeDelay1);
	}
	else if (document.all.RightBar.style.posLeft < pos4) {
		document.all.RightBar.style.posLeft = document.all.RightBar.style.posLeft + move_increment4;
		setTimeout("moveRightImg()",timeDelay1);
	}
    }
    else if (document.layers) {
		document.all.RightBar.style.width = "100px";
        document.RightBar.left  += move_increment4;
    }
}