/* 
 * Copyright 2007 Jeremy KUHN
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

zwg.namespace('zwg.widgets.menu');

/**
 * ListMenu Widget library
 * @ignore
 * @author Jeremy KUHN
 */
zwg.widgets.menu.ListMenu = function() {

}
/**
 * Select the item.
 * @param {String} string_url The URL to load.
 */
zwg.widgets.menu.ListMenu.selectItem = function(string_url) {
	if(string_url.substring(0,7) == 'http://') {
		window.location = string_url;
	}
	else {
		window.location = zwg.baseURI + string_url;
	}
}
/**
 * Highlight/Unhighlight the specified menu item.
 * @param {Element} element_item The item element.
 * @param {Boolean} boolean_hightlight true/false
 */
zwg.widgets.menu.ListMenu.setItemHighlight = function(element_item, boolean_highlight) {
	if(boolean_highlight) {
		element_item.className = 'listMenu-item listMenu-item-selected';
	}
	else {
		element_item.className = 'listMenu-item';
	}
}