<!-- JAMP MENU - VERSION 1.0 -->


function appendRight(elementId, targetId, offsetX, offsetY){
	if (offsetX == null) offsetX = 0;
	if (offsetY == null) offsetY = 0; 
	$(elementId).style.top  = (0 + offsetY)+"px";
	$(elementId).style.left = ($(targetId).getSize().size.x + offsetX)+"px";
}

function appendBottom(elementId, targetId, offsetX, offsetY){
	if (offsetX == null) offsetX = 0;
	if (offsetY == null) offsetY = 0;
	$(elementId).style.left = (0 + offsetX)+"px";
	$(elementId).style.top  = ($(targetId).getSize().size.y + offsetY)+"px";
}

function hide(elementId){
	$(elementId).style.visibility = "hidden";
}
function show(elementId){
	$(elementId).style.visibility = "visible";
}
