function setAutocomplete()
{
	var searchText = document.getElementById('search');
	if ( searchText ) {
		// turn the browser's autocomplete function off, otherwise they'll interfere with each other
		searchText.setAttribute( 'autocomplete', 'off' );
		var func = new Function('searchSuggest();');
		searchText.onkeyup = func;
    }

	var fieldToSet = document.getElementById( 'bcvnet' );
	if ( fieldToSet ) {
		// turn the browser's autocomplete function off, otherwise they'll interfere with each other
		fieldToSet.setAttribute( 'autocomplete', 'off' );
    }
}

function modifySearchImageOnSubmit()
{
  $('#searchform a.searchLink:first').css('background-image', 'url(/design/bcv/images/commun/loading.gif)').css('background-position','0 1px');
}

$(document).ready(function() {
setAutocomplete();
});