function findPos(obj) {
    var curleft = curtop = 0;
    if (obj.offsetParent) {
        curleft = obj.offsetLeft
        curtop = obj.offsetTop
        while (obj = obj.offsetParent) {
            curleft += obj.offsetLeft
            curtop += obj.offsetTop
        }
    }
    return [curtop,curleft];
}

var phone = findPos(document.getElementById('phone'));
//alert (phone[0] + ' ' + phone[1]);
/* --- geometry and timing of the menu --- 
	values are the lists with parameters for different menu levels
	for this menu: [blue_level, green_level, red_level]
*/
var MENU_POS1 = {
	// item sizes for different levels of menu
	'height': [25, 25],
	'width': [200, 200],
	// menu block offset from the origin:
	//	for root level origin is upper left corner of the page
	//	for other levels origin is upper left corner of parent item
	'block_top': [phone[0]+5, -31],
	'block_left': [422-273+phone[1], 0],
	// offsets between items of the same level
	'top': [0, -26],
	'left': [0, 0],
	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	'hide_delay': [500, 500]
};

/* --- dynamic menu styles ---
note: you can add as many style properties as you wish but be not all browsers
are able to render them correctly. The only relatively safe properties are
'color' and 'background'.
*/
var MENU_STYLES1 = {
	// default item state when it is visible but doesn't have mouse over
	'onmouseout': [
		'color', ['#FFFFFF', '#FFFFFF'], 
		'background', ['transparent', '#D1241B'],
		'textDecoration', ['none', 'none'],
		'fontWeight', ['normal', 'normal'],
		'lineHeight', ['25px', '25px'],
	],
	// state when item has mouse over it
	'onmouseover': [
		'color', ['#FFFFFF', '#FFFFFF'], 
		'background', ['transparent', '#D1241B'],
		'textDecoration', ['underline', 'underline'],
		'fontWeight', ['normal', 'normal'],
	],
	// state when mouse button has been pressed on the item
	'onmousedown': [
		'color', ['#FFFFFF', '#FFFFFF'], 
		'background', ['transparent', '#D1241B'],
		'textDecoration', ['underline', 'underline'],
		'fontWeight', ['normal', 'normal'],
	]
};
	

