var srch_phrase = "Search site...";

//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//
function onfocus_srchbx()
{
	if (document.getElementById("srchbx").value == srch_phrase)
		document.getElementById("srchbx").value = "";
		
	document.getElementById("srchbx").setAttribute("class", "sbox");	
}
//\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\

//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//  \\//
function onblur_srchbx()
{
	if (document.getElementById("srchbx").value == "" || document.getElementById("srchbx").value == srch_phrase)
	{
		document.getElementById("srchbx").value = srch_phrase;
		document.getElementById("srchbx").setAttribute("class", "sbox_js");	
	}
}
//\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\  //\\



onblur_srchbx();
