jQuery.noConflict();

function initPage()
{
	var navRoot = document.getElementById("main-navigation");
	var lis = navRoot.getElementsByTagName("li");
	for (var i=0; i<lis.length; i++)
	{
		lis[i].onmouseover = function()
		{
			this.className += " hover";
                }
		lis[i].onmouseout = function()
		{
			this.className = this.className.replace("hover","");
		}
	}
}

if (window.attachEvent && !window.opera)
	attachEvent("onload", initPage);
	
function inputClick(inp, typ, val) {
	switch (typ) {
		case 'f':
			if (inp.value == val) {
				inp.value = '';
			}
		break;
		case 'b':
			if (inp.value == '') {
				inp.value = val;
			}
		break;
	}
}

function resetForm(formID) {
	document.getElementById(formID).reset();
}




