/*
function preload( imgName )
{
   eval( imgName + '_on=new Image();' );
   eval( imgName + '_off=new Image();' );
   eval( imgName + '_on.src="/images/'+imgName+'_on.gif"' );
   eval( imgName + '_off.src="/images/'+imgName+'_off.gif"' );
}

preload( "btn_01" );
preload( "btn_02" );
preload( "btn_03" );
preload( "btn_04" );
preload( "btn_05" );
preload( "btn_06" );
preload( "btn_07" );
preload( "btn_08" );
preload( "btn_09" );
preload( "btn_10" );
preload( "btn_11" );
preload( "btn_12" );
preload( "btn_13" );
preload( "btn_14" );
preload( "btn_price" );
*/
/////////////////////////////////////////////////////////////////////////

var boxTimer = null;
var imgTimer = null;
function startTimer()
{
   stopTimer();
   boxTimer = setTimeout( "showLayer( null )", 1000 );
   imgTimer = setTimeout( "hidePossibles()", 1000 );
}
function stopTimer()
{
   if( boxTimer )
      clearTimeout( boxTimer );
   boxTimer = null;
   if( imgTimer )
      clearTimeout( imgTimer );
   imgTimer = null;
}

function hidePossibles()
{
   if( document.images ) 
   {
//      if( document[ 'whatis' ] != null )
//         imgToggleOFF('whatis');
 //     if( document[ 'Results' ] != null )
 //        imgToggleOFF('Results');
      }
}
