﻿function moveUp(div, startLinks, startTop){
	document.getElementById(div).style.position = "absolute"
	document.getElementById(div).style.left = startLinks + 5 + "px";
	document.getElementById(div).style.top = startTop + 5 + "px";
}

function moveDown(div, startLinks, startTop){
	document.getElementById(div).style.position = "absolute";
	document.getElementById(div).style.left = startLinks - 5 + "px";
	document.getElementById(div).style.top = startTop - 5 + "px";
}

function moveFixed(div, startLinks, startTop){
	document.getElementById(div).style.position = "absolute";
	document.getElementById(div).style.left = startLinks + "px";
	document.getElementById(div).style.top = startTop + "px";
}

