function handleProductLineSelection() {
	var s = document.location.href;
	var idx = s.indexOf('#');
	if (idx != -1) {
		var sku = s.substring(idx + 1);
		var row = $(sku);
		if (row != null) {
			row.addClass('HLProduct');
		}
	}
}


window.addEvent('domready',
	function() {
		handleProductLineSelection();
		var accordion = new Accordion('a.toggler', 'div.stretch',
			{
				alwaysHide: true,
				opacity: false,
				display: false,
				show:openMainMenuIndex,
				onActive: function(toggler, element)
				{
					toggler.setStyles({});
				},
		 		onBackground: function(toggler, element)
				{
					toggler.setStyles({});
				}
			});
	}
);
