//E-legance.org
//Auto completer
document.addEvent('domready',function(){
	new Autocompleter.Ajax.Json('searchname', 'http://'+window.location.hostname+'/object.php', {
		//name the element containing the search term something suitable
		//otherwise defaults to 'value'
		'postVar': 'q'
	});
	new Autocompleter.Ajax.Json('searchcity', 'http://'+window.location.hostname+'/newtown.php', {
		//name the element containing the search term something suitable
		//otherwise defaults to 'value'
		'postVar': 'q'
	});
	
	var myTips = new Tips('area.maptip');

	//$$('area.tip').store('tip:title', this.alt);

	$$('area.maptip').store('tip:text', '');
	
//	var myTips = new Tips('area.maptip');
//	$$('area.maptip').store('tip:text', '');
//	
//	myTips.addEvent('show', function(tip){
//		$(tip).setStyle('opacity',0);		
//		$(tip).set('morph', {duration: 300});
//		$(tip).morph({
//			'opacity':[0,1],
//			'width':[0,130],					 
//		});
//		
//
//	});
//	
//	myTips.addEvent('hide', function(tip){	
//		$(tip).set('morph', {duration: 300});	
//		$(tip).morph({
//			'opacity':[1,0],
//			'width':[130,0],					 
//		});
//	});
	
});