



/**
 * Styling a specific span element below an element
 * Hover (onmouseover)
 */
function hoverButton(elem)
{
	elem.style.backgroundColor='#768f64';
	elem.style.cursor='pointer';
	elem.style.cursor='hand';
	elem.style.backgroundImage='none';
	var children = elem.getElementsByTagName("div");
	for(i = 0; i<children.length;i++) {
		var element = children[i];
		if (element.className == 'menuBigText') {
			element.style.color = '#fff'; 
		}
	}
}

/**
 * Styling a specific span element below an element
 * Out (onmouseout)
 */
function unHoverButton(elem)
{
	elem.style.backgroundColor='#e4e9e2';
	elem.style.backgroundImage='url(/images/templates/menu_arrows.gif)';
	var children = elem.getElementsByTagName("div");
	for(i = 0; i<children.length;i++) {
		var element = children[i];
		if (element.className == 'menuBigText') {
			element.style.color = '#526347'; 			
		}
	}
}