var siteMenu = Class.create(); siteMenu.prototype = { initialize: function( menu_container_id, opener_class, opened_class, closed_class, top_line, bottom_line ) { this.main_container = $(menu_container_id); this.top_line = $(top_line); this.bottom_line = $(bottom_line); if( !this.main_container ) { return false; } this.class_opener = opener_class; this.class_opened = opened_class; this.class_closed = closed_class; this.last_target = false; this.position = ''; this.submenus = new Array(); this.elements_for_event = new Array(); this.elements = $A( this.main_container.getElementsByTagName('DIV') ); for( i=0; i