<!-- // 
   function checkinput(objElement)
	{
	if (objElement.value == '' ) 
		{
	   objElement.value=' Search...'
	   objElement.style.color="#d9d9b8";
	   };
	};

function clearinput(objElement)
	{
	if (objElement.value == ' Search...' ) 
		{
	   objElement.value='';
	   objElement.style.color="#000000";
	   };
	};

// Change Item of Menu
function menuswitch(who,button_state)
{
  classvalue = 'menuitem';
if (button_state) 
  {
    classvalue = 'menuitem_over';
  };
  who.firstChild.className = classvalue;
};


/// On Menu Click
function menuclick(who)
{
  var aObj = who.firstChild.firstChild;
  if (aObj.click)
  {
    aObj.click();
  }
  else //stuppppid Mozilla
  {
    document.location.href = aObj.href;
  };
};

//  -->
