 function in1()
 {
	if(to1) 
	{	clearTimeout(to1);
		to1 = null;
		return;
	}
	
	to1=setTimeout('gavelin(\'b1\')',to_length_in);
 }
 
 function in2()
 {
	if(to2) 
	{	clearTimeout(to2);
		to2 = null;
		return;
	}
	
	to2=setTimeout('gavelin(\'b2\')',to_length_in);
 }

 function in3()
 {
	if(to3) 
	{	clearTimeout(to3);
		to3 = null;
		return;
	}
	
	to3=setTimeout('gavelin(\'b3\')',to_length_in);
 }

 function in4()
 {
	if(to4) 
	{	clearTimeout(to4);
		to4 = null;
		return;
	}
	
	to4=setTimeout('gavelin(\'b4\')',to_length_in);
 }

 function in5()
 {
	if(to5) 
	{	clearTimeout(to5);
		to5 = null;
		return;
	}
	
	to5=setTimeout('gavelin(\'b5\')',to_length_in);
 }
 

 function gavelout()
 {
	hide('gavel');
	setX('gavel',-600);
	to1=null;
	to2=null;
	to3=null;
	to4=null;
	to5=null;
 }
 
 function gavelin(which)
 {
	y = 128;
	x = 120;
	
	if (is_nav && !is_nav5up)
	{
		which = which + which.charAt(1);
		y = y + 15;
		x = x + 15;
	}


	setY('gavel',getY(which)-y); 
	setX('gavel',getX(which)-x); 
	show('gavel');
	gimage.src='/images/gaveldown.gif'
 }

  
function updateIt(off,y)
{
	if (is_ie || is_nav5up)
	{
		x = getX('rightside');
	}
	else if (is_nav && !is_nav5up)
	{
		x = getX('rightside1');
	}
	
	x = x + off
	
	if (qlinks != 1)
		return;

	yoffset = 0;

	if (is_ie)
		yoffset = document.body.scrollTop;
	else if (is_nav)
		yoffset = pageYOffset;

	setX('quicklinks',x);
	setY('quicklinks',y + yoffset);
}