
var sub_id = "sub_0";
var sub_move = false;

// ***** //

function show_sub(id) {

	if(menu_ready) {
		
		sub_id = id;
		hide_all();
		document.getElementById(id).style.visibility = 'visible';
	}
	else {
	
		pos_sub();
		show_sub(id);
	}
}

// ***** //

function sub_on(id) {

}

// ***** //

function sub_off(id) {

	document.getElementById(id).style.visibility = 'hidden';
	sub_id = "sub_0";
}

// ***** //

function sub_move(id) {

	sub_move = true;
}

// ***** //

