/**
  Copyright 2005: Daniel Bulli  (www.nuff-respec.com)
  **/
  
 
// idea from : http://www.hicksdesign.co.uk/journal/    
// clear text in the search news box.
function clearSearchBox()
{
    if (document.getElementById('q').value == 'search nuff-respec')
    {
        document.getElementById('q').value = '';
    }
}    
