//E-legance.org

//Auto completer

document.addEvent('domready',function(){
	if(document.getElementById('chaterea')){
//		alert('test');
		$('chaterea').addEvent('focus',function(){
			if(this.value=='тук можете да зададете своите въпроси за директен чат с оператор...'){
				this.value='';
			}
		});
	}

	new Autocompleter.Ajax.Json('search', 'autocomplete.php', {

		//name the element containing the search term something suitable

		//otherwise defaults to 'value'

		'postVar': 'q'

	});

});


