/* 
	Organix Drop Down Menu
	-----------------------------------------------------------------------------
	Written by Dana Woodman <dana@organixdesign.com>
	Released under a Creative Commons Licence <http://creativecommons.org/licenses/by/3.0/>
	-----------------------------------------------------------------------------
	You are free to modify, share, copy, distribute and transmit this work, under the following conditions:
	You must attribute the work in the manner specified by the author or licensor 
	(but not in any way that suggests that they endorse you or your use of the work).
*/

// GetElementsByClass Function
function getElementsByClass(className) {
	var all = document.all ? document.all : document.getElementsByTagName('*');
	var elements = new Array();
	for (var i = 0; i < all.length; i++)
		if (all[i].className == className)
			elements[elements.length] = all[i];
	return elements;
}

// Menu Function
function menu(start,hover) {
	var elm = getElementsByClass(start);
	for (i=0; i < elm.length; i++) {
		elm[i].onmouseover = function() {
			this.className = hover;
			this.onmouseout = function() {
				this.className = start;
			}
		}
	}
}

// Call Menu Function on page load
window.onload = function() {
	menu('parent','activeParent');
}
