function searchBoxFocused()
{
  var elt = document.getElementById( "author" );
  currentTextValue = elt.value;
  if( currentTextValue == "name ..." )
  {
    elt.value = ""
    elt.style.color = "#333333"
  }
}
 
function searchBoxBluered()
{
  var elt = document.getElementById( "author" );
  currentTextValue = elt.value;
  if( currentTextValue == "" )
  {
    elt.style.color = "#dddddd"
    elt.value = "name ..."
  }
}

menu_status = new Array();

function showHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}



function archive_drop_go(box)
		{
			destination = box.options[box.selectedIndex].value;
			if (destination) location.href = destination;
		
		}
