// Javascript Document
// *Dues go to alistapart.com thanks!
	startList = function() {
	if (document.all && document.getElementById) {
	
	/* compensate for required child elements to prevent on class menu item from showing through */
	/* document.getElementById("liContact-Us").innerHTML += "<ul><li></li></ul>" */
	document.getElementById("liRemoval").innerHTML += "<ul><li></li></ul>"
	document.getElementById("liConsignments").innerHTML += "<ul><li></li></ul>"
	

	
	navRoot = document.getElementById("nav");
	for (i=0; i<navRoot.childNodes.length; i++) {
			
			  node = navRoot.childNodes[i];  
			  
			  		/* If the html element is a li and does not have an id containing liServices then*/
					  if (node.nodeName=="LI" &! document.getElementById("liServices") ) {
						node.onmouseover=function() {this.className+="over";}							 
						node.onmouseout=function() {this.className=this.className.replace("over", "");}
						} 
					
					/*	
					else  {
						
						document.getElementById("liServicesA").onmouseover=function() {
							Spry.Effect.GrowShrink('menuServices', {duration: 200, from: '0%', to: '100%', growCenter: true, toggle: false}); 
							}
						
						document.getElementById("menuServices").onmouseout=function() {
							Spry.Effect.GrowShrink('menuServices', {duration: 200, from: '100%', to: '0%', growCenter: true, toggle: false});
							}
						}
						*/
	}
	}
	
	}
	
	window.onload=startList;	