function wes_init()
{
	mouseoverNav();
  searchBoxToggle();
}

function mouseoverNav()
{
	navRoot = document.getElementById("nav");
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				if (document.all) this.className+=" hover";
			}
			node.onmouseout=function() {
				if (document.all) this.className=this.className.replace(" hover", "");
			}

		}

	}
	
}

function searchBoxToggle()
{
	search_field = document.getElementsByName("tx_commercesearch_pi1[searchValue]");
	search_field[0].value = enter_searchphrase;
	
	search_field[0].onclick = function() {
    if (search_field[0].value == enter_searchphrase) search_field[0].value = '';
	}

	search_field[0].onblur = function() {
    if(!search_field[0].value) search_field[0].value = enter_searchphrase;
	}
}

window.onload = wes_init;
