/*----------------------------------------------------------------------------------------//
// NAME: 	    common.js
// DESCRIPTION: Includes common functions being used by the CMU template.
//
//----------------------------------------------------------------------------------------*/

function ClearSearchBox(inputBox)
{
   if ( inputBox.value == 'Search cmich.edu' )
    {
     // inputBox.select();
	inputBox.value='';
    }
}