function searchBoxFocused()
{
  var elt = document.getElementById( "search-text" );
  currentTextValue = elt.value;
  if( currentTextValue == "Suchen..." )
  {
    elt.value = ""
    elt.style.color = "#7a7c7e"
	elt.style.width = "250px"
  }
}
 
function searchBoxBluered()
{
  var elt = document.getElementById( "search-text" );
  currentTextValue = elt.value;
  if( currentTextValue == "" )
  {
    elt.style.color = "#BBBBBB"
    elt.value = "Suchen..."
	elt.style.width = "110px"
  }
}
 
function submitSearch()
{
  currentTextValue = document.getElementById( "search-text" ).value;
 
  if( currentTextValue == "" ||
    currentTextValue == "Suchen..." )
  {
    // Do whatever you want if user didn't submit a keyword
  }
  // Show search results
  else
  {
    // Submit a for or redirect user to
    // the place where search results are
  }
}