/**
 * Fixes :hover navigation for IE6.
 */
function startList() {
	navContainer = document.getElementById("navigation");
	navRoot = document.getElementById("primaryNavigation");
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="LI") {
			node.onmouseover=function() {
				this.className+=" hover";
			}
			node.onmouseout=function() {
				this.className=this.className.replace(" hover", "");
			}
		}
	}
}
$(document).ready(function() {
	startList();
});
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = ""
} 
function addText(thefield){
	if(thefield.value == '') {
		thefield.value = thefield.defaultValue;
	}
}
