<!-- JAMP MENU - VERSION 1.0 -->


function appendRight(elementId, targetId, offsetX, offsetY){
	var dim = $(targetId).getDimensions();
	
	if (offsetX == null) offsetX = 0;
	if (offsetY == null) offsetY = 0; 
	$(elementId).style.top  = (0 + offsetY)+"px";
	$(elementId).style.left = (dim.width + offsetX)+"px";
}

function appendBottom(elementId, targetId, offsetX, offsetY){
	var dim = $(targetId).getDimensions();
	
	if (offsetX == null) offsetX = 0;
	if (offsetY == null) offsetY = 0;
	$(elementId).style.left = (0 + offsetX)+"px";
	$(elementId).style.top  = (dim.height + offsetY)+"px";
}

function hideMenu(elementId){
	$(elementId).style.visibility = "hidden";
}
function showMenu(elementId){
	$(elementId).style.visibility = "visible";
}
