function startList() 
{	
	if (document.all && document.getElementById) {
		
		primaryNav = document.getElementById("primary_navigation");
		elements = getElementsByClass('navigation', primaryNav);
		
		for ( i = 0; i < elements.length; i++ ) {
			
			navRoot = elements[i];
			
			if ( navRoot.childNodes ) {
				
				for ( j = 0; j < navRoot.childNodes.length; j++ ) {
					
					node = navRoot.childNodes[j];
					
					if ( node && node.nodeName=="LI" ) {
						node.onmouseover=function() {
							this.className+=" over";
						}
						node.onmouseout=function() {
							this.className=this.className.replace(" over", "");
						}
					}
				}
			}
		}
	}
}

function displayDetails(productLink)
{
	id = getQueryVariable('ID', productLink.href);
	element = document.getElementById('product_description_' + id);
	
	if ( element.innerHTML.length ) {
		return overlib(element.innerHTML, CAPTION, 'Additional Information');
	}
	
	return null;
}

if ( typeof hs != 'undefined' ) {
	hs.graphicsDir = '/common/scripts/highslide/graphics/';
	hs.outlineType = 'rounded-white';
	hs.outlineWhileAnimating = false;
	hs.cacheAjax = false;
	hs.enableKeyListener = false;

}

