// JavaScript Document
function SearchBoxFocused()
{
  var elt = document.getElementById( "psps_search" );
  currentTextValue = elt.value;
  if( currentTextValue == "Item search ..." )
  {
    elt.value = ""
    elt.style.color = "#000000"
  }
}
 
function SearchBoxBlurred()
{
  var elt = document.getElementById( "psps_search" );
  currentTextValue = elt.value;
  if( currentTextValue == "" )
  {
    elt.style.color = "#cccccc"
    elt.value = "Item search ..."
  }
}