/* 
from ALA's Suckerfish Dropdowns: http://www.alistapart.com/articles/dropdowns/
*/

startList = function() {
	if (document.getElementById) {
		navRoot = document.getElementById("menu_ul");		
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
			  }
				node.onmouseout=function() {
			  	this.className=this.className.replace("over", "");
					//alert('['+this.className+']'); 
				}
			}
		}
	}
}

 window.addEvent(window.ie6 ? 'load' : 'domready', function() {

startList();
});



function confirm_delete(title) {
	return confirm("Delete this listing ("+title+")?"); 
}