
function searchFieldInit(field){
	field.style.color='#888';

}

function searchFieldUpdate(field, lang){
	var txt = '';
	if(lang == 'no')
		txt = 'Søk her...';
	else
		txt = 'Search term...';
	if(field.value == ''){
		field.value = txt;
		field.style.color = '#888';
	} else if(field.value == txt) {
		field.value = '';
		field.style.color = '#000';
	}
}