
// Title: Product Finder for Sunrise Telecom
// Description: drop down with consistent text style
// Date: 08/17/2008


var menus = [];

// --- menu class ---
function menu1 (item_struct, pos, styles) {
	// browser check
	this.item_struct = item_struct;
	this.pos = pos;
	this.styles = styles;
	this.id = menus.length;
	this.items = [];
	this.children = [];
	
	this.add_item = menu_add_item;
	this.hide = menu_hide;
	
	this.onclick = menu_onclick;
	this.onmouseout = menu_onmouseout;
	this.onmouseover = menu_onmouseover;
	this.onmousedown = menu_onmousedown;
	
	var i;
	for (i = 0; i < this.item_struct.length; i++)
		new menu_item(i, this, this);
	for (i = 0; i < this.children.length; i++)
		this.children[i].visibility(true);
	menus[this.id] = this;
}
function menu_add_item (item) {
	var id = this.items.length;
	this.items[id] = item;
	return (id);
}
function menu_hide () {
	for (var i = 0; i < this.items.length; i++) {
		this.items[i].visibility(false);
		this.items[i].switch_style('onmouseout');
	}
}
function menu_onclick (id) {
	var item = this.items[id];
	return (item.fields[1] ? true : false);
}
function menu_onmouseout (id) {
	this.hide_timer = setTimeout('menus['+ this.id +'].hide();',
		this.pos['hide_delay'][this.active_item.depth]);
	if (this.active_item.id == id)
		this.active_item = null;
}
function menu_onmouseover (id) {
	this.active_item = this.items[id];
	clearTimeout(this.hide_timer);
	var curr_item, visib;
	for (var i = 0; i < this.items.length; i++) {
		curr_item = this.items[i];
		visib = (curr_item.arrpath.slice(0, curr_item.depth).join('_') ==
			this.active_item.arrpath.slice(0, curr_item.depth).join('_'));
		if (visib)
			curr_item.switch_style (
				curr_item == this.active_item ? 'onmouseover' : 'onmouseout');
		curr_item.visibility(visib);
	}
}
function menu_onmousedown (id) {
	this.items[id].switch_style('onmousedown');
}
// --- menu item Class ---
function menu_item (path, parent, container) {
	this.path = new String (path);
	this.parent = parent;
	this.container = container;
	this.arrpath = this.path.split('_');
	this.depth = this.arrpath.length - 1;
	// get pointer to item's data in the structure
	var struct_path = '', i;
	for (i = 0; i <= this.depth; i++)
		struct_path += '[' + (Number(this.arrpath[i]) + (i ? 2 : 0)) + ']';
	eval('this.fields = this.container.item_struct' + struct_path);
	if (!this.fields) return;
	
	// assign methods	
	this.get_x = mitem_get_x;
	this.get_y = mitem_get_y;
	// these methods may be different for different browsers (i.e. non DOM compatible)
	this.init = mitem_init;
	this.visibility = mitem_visibility;
	this.switch_style = mitem_switch_style;
	
	// register in the collections
	this.id = this.container.add_item(this);
	parent.children[parent.children.length] = this;
	
	// init recursively
	this.init();
	this.children = [];
	var child_count = this.fields.length - 2;
	for (i = 0; i < child_count; i++)
		new menu_item (this.path + '_' + i, this, this.container);
	this.switch_style('onmouseout');
}
function mitem_init() {
	document.write (
		'<div class="jmenu1"><a id="mi_' + this.container.id + '_'
			+ this.id +'" class="m' + this.container.id + 'l' + this.depth 
			+'o" href="' + this.fields[1] + '" style="position: absolute; top: '
			+ this.get_y() + 'px; left: '	+ this.get_x() + 'px; width: '
			+ this.container.pos['width'][this.depth] + 'px; height: '
			+ this.container.pos['height'][this.depth] + 'px; visibility: hidden;'
			+' background: black; color: white; z-index: ' + this.depth + ';" '
			+ 'onclick="return menus[' + this.container.id + '].onclick('
			+ this.id + ');" onmouseout="menus[' + this.container.id + '].onmouseout('
			+ this.id + ');" onmouseover="menus[' + this.container.id + '].onmouseover('
			+ this.id + ');" onmousedown="menus[' + this.container.id + '].onmousedown('
			+ this.id + ');"><div class="m'  + this.container.id + 'l' + this.depth + 'i">'
			+ this.fields[0] + "</div></a></div>\n"
		);
	this.element = document.getElementById('mi_' + this.container.id + '_' + this.id);
}
function mitem_visibility(make_visible) {
	if (make_visible != null) {
		if (this.visible == make_visible) return;
		this.visible = make_visible;
		if (make_visible)
			this.element.style.visibility = 'visible';
		else if (this.depth)
			this.element.style.visibility = 'hidden';
	}
	return (this.visible);
}
function mitem_get_x() {
	var value = 0;
	for (var i = 0; i <= this.depth; i++)
		value += this.container.pos['block_left'][i]
		+ this.arrpath[i] * this.container.pos['left'][i];
	return (value);
}
function mitem_get_y() {
	var value = 0;
	for (var i = 0; i <= this.depth; i++)
		value += this.container.pos['block_top'][i]
		+ this.arrpath[i] * this.container.pos['top'][i];
	return (value);
}
function mitem_switch_style(state) {
	if (this.state == state) return;
	this.state = state;
	var style = this.container.styles[state];
	for (var i = 0; i < style.length; i += 2)
		if (style[i] && style[i+1])
			eval('this.element.style.' + style[i] + "='" 
			+ style[i+1][this.depth] + "';");
}
// end of main

// menu_items.js file
// comments block here


var MENU_ITEMS1 =[
["<b>&nbsp;Telecom</b><img src=/js/i/spacer_15.gif border=0>", "/global/search.php?t=Telecom",		["<img src=/js/i/spacer_4.gif border=0>Construction", "/products/app.php?t=Telecom+%3E+Construction&p=54%7C51%7C57%7C60%7C71%7C70%7C50%7C49%7C38%7C28%7C39%7C47%7C48%7C26",
			["<img src=/js/i/spacer_4.gif border=0>Copper Loop Testing", "/products/app.php?t=Telecom+%3E+Construction+%3E+Copper+Loop+Testing&p=57%7C60%7C71%7C54%7C47%7C28%7C39%7C26"],
			["<img src=/js/i/spacer_4.gif border=0>Optical Fiber Testing", "/products/app.php?t=Telecom+%3E+Construction+%3E+Optical+Fiber+Testing&p=51%7C70%7C50%7C49%7C48%7C38"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Installation & Service", "/products/app.php?t=Telecom+%3E+Installation+%26+Service&p=51%7C48%7C47%7C53%7C55%7C60%7C58%7C57%7C46%7C43%7C28%7C27%7C26%7C35%7C38",
			["<img src=/js/i/spacer_4.gif border=0>Copper Loop Testing", "/products/app.php?t=Telecom+%3E+Installation+%26+Service+%3E+Copper+Loop+Testing&p=47%7C53%7C57%7C60%7C46%7C43%7C26%7C28%7C35%7C39%7C33"],
			["<img src=/js/i/spacer_4.gif border=0>FTTH", "/products/app.php?t=Telecom+%3E+Installation+%26+Service+%3E+FTTH&p=51%7C58%7C60%7C48%7C40%7C28%7C35%7C38%7C27"],
			["<img src=/js/i/spacer_4.gif border=0>FTTN", "/products/app.php?t=Telecom+%3E+Installation+%26+Service+%3E+FTTN&p=55%7C60%7C48%7C40%7C28%7C38%7C27"],
			["<img src=/js/i/spacer_4.gif border=0>xDSL", "/products/app.php?t=Telecom+%3E+Installation+%26+Service+%3E+xDSL&p=55%7C60%7C53%7C43%7C28%7C33"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Network Monitoring Analysis & Testing", "/products/app.php?t=Telecom+%3E+Network+Monitoring+Analysis+%26+Testing&p=65%7C61%7C59%7C68%7C70%7C76%7C75%7C74%7C54%7C53%7C42%7C36%7C34%7C44%7C45",
			["<img src=/js/i/spacer_4.gif border=0>Conformance Testing", "/products/app.php?t=Telecom+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Conformance+Testing&p=75%7C76%7C61%7C36%7C34%7C6"],
			["<img src=/js/i/spacer_4.gif border=0>Jitter & Wander Measurement", "/products/app.php?t=Telecom+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Jitter+%26+Wander+Measurement&p=76%7C75%7C74%7C68%7C36"],
			["<img src=/js/i/spacer_4.gif border=0>Protocol Analysis", "/products/app.php?t=Telecom+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Protocol+Analysis&p=75%7C76%7C74%7C70%7C61%7C36"],
			["<img src=/js/i/spacer_4.gif border=0>Protocol Testing", "/products/app.php?t=Telecom+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Protocol+Testing&p=76%7C61%7C36"],
			["<img src=/js/i/spacer_4.gif border=0>QoS Analysis", "/products/app.php?t=Telecom+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+QoS+Analysis&p=65%7C61%7C54%7C68%7C70%7C76%7C75%7C53%7C50%7C36%7C34%7C42%7C44%7C46%7C45"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Special Services", "/products/app.php?t=Telecom+%3E+Special+Services&p=71%7C68%7C65%7C72%7C73%7C76%7C75%7C74%7C61%7C54%7C36%7C35%7C26%7C37%7C41",
			["<img src=/js/i/spacer_4.gif border=0>ATM", "/products/app.php?t=Telecom+%3E+Special+Services+%3E+ATM&p=76%7C75%7C52%7C42"],
			["<img src=/js/i/spacer_4.gif border=0>Ethernet Testing", "/products/app.php?t=Telecom+%3E+Special+Services+%3E+Ethernet+Testing&p=68%7C72%7C65%7C41%7C37%7C26"],
			["<img src=/js/i/spacer_4.gif border=0>Frame Relay", "/products/app.php?t=Telecom+%3E+Special+Services+%3E+Frame+Relay&p=39%7C74%7C76%7C75%7C36%7C6"],
			["<img src=/js/i/spacer_4.gif border=0>GSM/GPRS", "/products/app.php?t=Telecom+%3E+Special+Services+%3E+GSM%2FGPRS&p=42%7C76%7C19%7C36"],
			["<img src=/js/i/spacer_4.gif border=0>ISDN", "/products/app.php?t=Telecom+%3E+Special+Services+%3E+ISDN&p=46%7C43%7C75%7C76%7C36%7C6%7C62"],
			["<img src=/js/i/spacer_4.gif border=0>SONET/SDH", "/global/search.php?t=Telecom+%3E+Special+Services+%3E+SONET%2FSDH"],
			["<img src=/js/i/spacer_4.gif border=0>T1/T3/PDH", "/global/search.php?t=Telecom+%3E+Special+Services+%3E+T1%2FT3%2FPDH"],
			["<img src=/js/i/spacer_4.gif border=0>V5.x", "/products/app.php?t=Telecom+%3E+Special+Services+%3E+V5.x&p=76%7C36"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Switching & Transport", "/global/search.php?t=Telecom+%3E+Switching+%26+Transport",
			["<img src=/js/i/spacer_4.gif border=0>Ethernet", "/global/search.php?t=Telecom+%3E+Switching+%26+Transport+%3E+Ethernet"],
			["<img src=/js/i/spacer_4.gif border=0>Next Genenration SONET/SDH", "/global/search.php?t=Telecom+%3E+Switching+%26+Transport+%3E+Next+Gen+SONET%2FSDH"],
			["<img src=/js/i/spacer_4.gif border=0>Optical Fiber Testing", "/global/search.php?t=Telecom+%3E+Switching+%26+Transport+%3E+Optical+Fiber+Testing"],
			["<img src=/js/i/spacer_4.gif border=0>OTN", "/global/search.php?t=Telecom+%3E+Switching+%26+Transport+%3E+OTN"],
			["<img src=/js/i/spacer_4.gif border=0>SONET/SDH", "/global/search.php?t=Telecom+%3E+Switching+%26+Transport+%3E+SONET%2FSDH"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Triple Play (Video/Data/Voice)", "/global/search.php?t=Telecom+%3E+Triple+Play+%28Video%2FData%2FVoice%29",
			["<img src=/js/i/spacer_4.gif border=0>Data", "/global/search.php?t=Telecom+%3E+Triple+Play+%28Video%2FData%2FVoice%29+%3E+Data"],
			["<img src=/js/i/spacer_4.gif border=0>FTTN", "/global/search.php?t=Telecom+%3E+Triple+Play+%28Video%2FData%2FVoice%29+%3E+FTTN"],
			["<img src=/js/i/spacer_4.gif border=0>Video", "/global/search.php?t=Telecom+%3E+Triple+Play+%28Video%2FData%2FVoice%29+%3E+Video"],
			["<img src=/js/i/spacer_4.gif border=0>Voice", "/global/search.php?t=Telecom+%3E+Triple+Play+%28Video%2FData%2FVoice%29+%3E+Voice"]
		]
	],
["<b>&nbsp;Cable</b><img src=/js/i/spacer_15.gif border=0>", "/global/search.php?t=Cable",		["<img src=/js/i/spacer_4.gif border=0>Headend Maintenance", "/global/search.php?t=Cable+%3E+Headend+Maintenance",
			["<img src=/js/i/spacer_4.gif border=0>Baseband Video Testing", "/global/search.php?t=Cable+%3E+Headend+Maintenance+%3E+Baseband+Video+Testing"],
			["<img src=/js/i/spacer_4.gif border=0>FCC Testing", "/global/search.php?t=Cable+%3E+Headend+Maintenance+%3E+FCC+Testing"],
			["<img src=/js/i/spacer_4.gif border=0>RF System Sweep", "/global/search.php?t=Cable+%3E+Headend+Maintenance+%3E+RF+System+Sweep"],
			["<img src=/js/i/spacer_4.gif border=0>Spectrum Analysis & RF Characterization", "/global/search.php?t=Cable+%3E+Headend+Maintenance+%3E+Spectrum+Analysis+%26+RF+Characterization"]
		],
		["<img src=/js/i/spacer_4.gif border=0>HFC Network Maintenance Sweep", "/global/search.php?t=Cable+%3E+HFC+Network+Maintenance+Sweep",
			["<img src=/js/i/spacer_4.gif border=0>FCC Testing", "/global/search.php?t=Cable+%3E+HFC+Network+Maintenance+Sweep+%3E+FCC+Testing"],
			["<img src=/js/i/spacer_4.gif border=0>RF System Sweep or Network Frequency Response", "/global/search.php?t=Cable+%3E+HFC+Network+Maintenance+Sweep+%3E+RF+System+Sweep+or+Network+Frequency+Response"],
			["<img src=/js/i/spacer_4.gif border=0>Signal Level Measurements", "/global/search.php?t=Cable+%3E+HFC+Network+Maintenance+Sweep+%3E+Signal+Level+Measurements"],
			["<img src=/js/i/spacer_4.gif border=0>Spectrum Analysis & RF Characterization", "/global/search.php?t=Cable+%3E+HFC+Network+Maintenance+Sweep+%3E+Spectrum+Analysis+%26+RF+Characterization"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Installation & Service", "/products/app.php?t=Cable+%3E+Installation+%26+Service&p=11%7C24",
			["<img src=/js/i/spacer_4.gif border=0>Cable Modem Installation", "/products/app.php?t=Cable+%3E+Installation+%26+Service+%3E+Cable+Modem+Installation&p=11%7C24"],
			["<img src=/js/i/spacer_4.gif border=0>Digital Video Installation", "/products/app.php?t=Cable+%3E+Installation+%26+Service+%3E+Digital+Video+Installation&p=11%7C24"],
			["<img src=/js/i/spacer_4.gif border=0>Measurements with TDR", "/products/app.php?t=Cable+%3E+Installation+%26+Service+%3E+Measurements+with+TDR&p=24%7C23"],
			["<img src=/js/i/spacer_4.gif border=0>Signal Level Measurement", "/global/search.php?t=Cable+%3E+Installation+%26+Service+%3E+Signal+Level+Measurement"],
			["<img src=/js/i/spacer_4.gif border=0>Troubleshooting the Drop", "/global/search.php?t=Cable+%3E+Installation+%26+Service+%3E+Troubleshooting+the+Drop"],
			["<img src=/js/i/spacer_4.gif border=0>VoIP Activation", "/global/search.php?t=Cable+%3E+Installation+%26+Service+%3E+VoIP+Activation"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Network Monitoring Analysis & Testing", "/global/search.php?t=Cable+%3E+Network+Monitoring+Analysis+%26+Testing",
			["<img src=/js/i/spacer_4.gif border=0>Automated RF Analog Signal Monitoring", "/global/search.php?t=Cable+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Automated+RF+Analog+Signal+Monitoring"],
			["<img src=/js/i/spacer_4.gif border=0>Automated RF Digital Signal Monitoring", "/global/search.php?t=Cable+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Automated+RF+Digital+Signal+Monitoring"],
			["<img src=/js/i/spacer_4.gif border=0>Automated RF Signal Monitoring", "/global/search.php?t=Cable+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Automated+RF+Signal+Monitoring"],
			["<img src=/js/i/spacer_4.gif border=0>Conformance Testing", "/global/search.php?t=Cable+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Conformance+Testing"],
			["<img src=/js/i/spacer_4.gif border=0>Protocol Analysis", "/global/search.php?t=Cable+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Protocol+Analysis"],
			["<img src=/js/i/spacer_4.gif border=0>Protocol Testing", "/global/search.php?t=Cable+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+Protocol+Testing"],
			["<img src=/js/i/spacer_4.gif border=0>QoS Analysis", "/global/search.php?t=Cable+%3E+Network+Monitoring+Analysis+%26+Testing+%3E+QoS+Analysis"]
		]
	],
["<b>&nbsp;Wireless</b><img src=/js/i/spacer_15.gif border=0>", "/products/app.php?t=Wireless&p=74%7C76%7C36%7C19%7C62%7C9%7C27%7C28",		["<img src=/js/i/spacer_4.gif border=0>Service Verification", "/products/app.php?t=Wireless+%3E+Service+Verification&p=74%7C76%7C36",
			["<img src=/js/i/spacer_4.gif border=0>Voice Channel Monitoring", "/products/app.php?t=Wireless+%3E+Service+Verification+%3E+Voice+Channel+Monitoring&p=74%7C76%7C36"],
			["<img src=/js/i/spacer_4.gif border=0>Speech Decoding", "/products/app.php?t=Wireless+%3E+Service+Verification+%3E+Speech+Decoding&p=74%7C76%7C36"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Network Monitoring & Analysis", "/products/app.php?t=Wireless+%3E+Network+Monitoring+%26+Analysis&p=74%7C76%7C36%7C19%7C62%7C9",
			["<img src=/js/i/spacer_4.gif border=0>Protocol Testing", "/products/app.php?t=Wireless+%3E+Network+Monitoring+%26+Analysis+%3E+Protocol+Testing&p=74%7C76%7C36"],
			["<img src=/js/i/spacer_4.gif border=0>Protocol Analysis", "/products/app.php?t=Wireless+%3E+Network+Monitoring+%26+Analysis+%3E+Protocol+Analysis&p=19%7C62"],
			["<img src=/js/i/spacer_4.gif border=0>Service Assurance", "/products/app.php?t=Wireless+%3E+Network+Monitoring+%26+Analysis+%3E+Service+Assurance&p=9"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Network Equipment Testing", "/products/app.php?t=Wireless+%3E+Network+Equipment+Testing&p=19%7C62%7C74%7C76%7C36",
			["<img src=/js/i/spacer_4.gif border=0>Conformance Testing", "/products/app.php?t=Wireless+%3E+Network+Equipment+Testing+%3E+Conformance+Testing&p=19"],
			["<img src=/js/i/spacer_4.gif border=0>Protocol Analysis", "/products/app.php?t=Wireless+%3E+Network+Equipment+Testing+%3E+Protocol+Analysis&p=19%7C62"],
			["<img src=/js/i/spacer_4.gif border=0>GSM TRAU Testing", "/products/app.php?t=Wireless+%3E+Network+Equipment+Testing+%3E+GSM+TRAU+Testing&p=74%7C76%7C36"]
		],
		["<img src=/js/i/spacer_4.gif border=0>Home Network Testing", "/products/app.php?t=Wireless+%3E+Home+Network+Testing&p=27%7C28",
			["<img src=/js/i/spacer_4.gif border=0>IEEE 802.1x Wireless", "/products/app.php?t=Wireless+%3E+Home+Network+Testing+%3E+IEEE+802.1x+Wireless&p=27%7C28"]
		]
	],

];




/* --- geometry and timing of the menu --- */
var MENU_POS1 = new Array();

	// 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

MENU_POS1['block_top']  = [160, 16, 14];MENU_POS1['block_left'] = [157, 0, 135];	

	// item sizes for different levels of menu
	MENU_POS1['height']     = [17, 21, 22];
	MENU_POS1['width']      = [250, 250, 312];

	// offsets between items of the same level
	MENU_POS1['top']        = [0, 21, 21];
	MENU_POS1['left']       = [105, 0, 0];

	// time in milliseconds before menu is hidden after cursor has gone out
	// of any items
	MENU_POS1['hide_delay'] = [200, 200, 200];

/* --- 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 = new Array();

	// default item state when it is visible but doesn't have mouse over
	MENU_STYLES1['onmouseout'] = [
		'background', ['#dddddd', '#5752ad', '#c2c0e5'],
		'color', ['#000000', '#ffffff', '#000000'],
	];

	// state when item has mouse over it
	MENU_STYLES1['onmouseover'] = [
		'background', ['#dddddd', '#5752ad', '#c2c0e5'],
		'color', ['#000000', '#ffffff', '#000000'],
	];

	// state when mouse button has been pressed on the item
	MENU_STYLES1['onmousedown'] = [
		'background', ['#cccccc', '#5752ad', '#c2c0e5'],
		'color', ['#000000', '#ffffff', '#000000'],
	];

