
function initPage()
{
    var navRoot = document.getElementById("submit1");
	if (navRoot) {
		navRoot.onmouseover = function()
	
			{
				this.className = "hover";
			}
			navRoot.onmouseout = function()
			{
				this.className = "";
			}
	}
	var navRoot = document.getElementById("submit2");
	if (navRoot) {
	
			navRoot.onmouseover = function()
			{
				this.className = "hover";
			}
			navRoot.onmouseout = function()
			{
				this.className = "";
			}
		}
	var navRoot = document.getElementById("submit3");
	if (navRoot) {
		navRoot.onmouseover = function()
	
			{
				this.className = "hover";
			}
			navRoot.onmouseout = function()
			{
				this.className = "";
			}
	}

	var navRoot = document.getElementById("submit4");
	if (navRoot) {
		navRoot.onmouseover = function()
	
			{
				this.className = "hover";
			}
			navRoot.onmouseout = function()
			{
				this.className = "";
			}
	}
	var navRoot = document.getElementById("submit5");
	if (navRoot) {
		navRoot.onmouseover = function()
	
			{
				this.className = "hover";
			}
			navRoot.onmouseout = function()
			{
				this.className = "";
			}
	}	
	var navRoot = document.getElementById("submit6");
	if (navRoot) {
		navRoot.onmouseover = function()
	
			{
				this.className = "hover";
			}
			navRoot.onmouseout = function()
			{
				this.className = "";
			}
	}	
	var navRoot = document.getElementById("submit7");
	if (navRoot) {
		navRoot.onmouseover = function()
	
			{
				this.className = "hover";
			}
			navRoot.onmouseout = function()
			{
				this.className = "";
			}
	}
		
}

if (window.attachEvent && !window.opera)
	attachEvent("onload", initPage);
