	<!--
	var menuDelay = 750;
	var topMenu;
	var showErrors = true;
	function getObj(name)
	{
		
	  if (document.getElementById)
	  {
		this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
	  }
	  else if (document.all)
	  {
		this.obj = document.all[name];
		this.style = document.all[name].style;
	  }
	  else if (document.layers)
	  {
		this.obj = document.layers[name];
		this.style = document.layers[name];
	  }
	}
	function over(what)
	{
		keepOut[what] = false;
		switch(what)
		{
			case "candidates":
				
				//parent.menu.bringIn();
				//alert(parent.frames[0].document);
				var chosenFrame = frames[1];
				bringToTop((new getObj("candidates-menu")).obj);
				//menu.document.bringIn()
			break;
			case "about":
				
				//parent.menu.bringIn();
				//alert(parent.frames[0].document);
				var chosenFrame = frames[0];
				bringToTop((new getObj("about-menu")).obj);
				//menu.document.bringIn()
			break;
			default:
			//	keepOut["candidates"] = false;
			//	out_helper("candidates");
			break;
		}
		
		if(chosenFrame!=null)
		{
			chosenFrame.bringIn();
			//bringToTop(chosenFrame);	
		}
		
		
	}
	var keepOut = new Array();
	keepOut["candidates"] = false;
	function out(what)
	{
		keepOut[what] = true;
		self.setTimeout('out_helper("'+what+'")', menuDelay);
	}
	function keepMenuIn(what)
	{
		keepOut[what] = false;
	}
	function in_helper(what)
	{
		
		if(keepOut[what])
			return;
		
		
		switch(what)
		{
			case "candidates":
				if(!keepOut[what])
				{
					var chosenFrame = frames[1];
					
				}
					//parent.menu.out();
			break;
			case "about":
				if(!keepOut[what])
				{
					var chosenFrame = frames[0];
					
				}
					//parent.menu.out();
			break;
			
		}

		if(chosenFrame!=null)
		{
			chosenFrame.bringIn();
			bringToTop(chosenFrame);	
		}
		
	}
	function out_helper(what)
	{
			
		if(!keepOut[what])
			return;
		
		
		
				
		switch(what)
		{
			
			case "about":
				
					var chosenFrame = frames[0];
					//parent.menu.out();
			break;
			
			case "candidates":
				
					var chosenFrame = frames[1];
					//parent.menu.out();
			break;
			
		}
		if(chosenFrame!=null)
		{
			chosenFrame.out();
			
		}
		
		
		
		
	}
	function trace(msg)
	{
		if(!showErrors)
			return;
		var test = document.getElementById("log");
		test.innerHTML += msg+"<br>";
	}
	function bringToTop(frame)
	{
	
		if(	topMenu != null)
		{
			swapDepths(frame,topMenu);
		}
		else
		{
			frame.style.zIndex = 9999;
		}
		topMenu = frame;
	}
	function swapDepths(frame1,frame2)
	{
		var temp = frame1.style.zIndex;
		frame1.style.zIndex = frame2.style.zIndex;
		frame2.style.zIndex = temp;
	}
	function showMenu(what)
	{
		var myiframe = new getObj(what+'-menu');
 		myiframe.style.visibility = 'visible';
	}
	function hideMenu(what)
	{
		var myiframe = new getObj(what+'-menu');
		myiframe.style.visibility = 'hidden';
	}
	
	function mouseOut(what)
	{
		if(what!=null)
		{
			//alert('here');
			keepOut[what] = true;
			self.setTimeout('out_helper("'+what+'")', menuDelay);
		}
	}
	function initialize()
	{
		//topMenu = frames[0];
	}
	var initializeArray = new Array();
	initializeArray.push(initialize);
	
	
	-->
