/*
window.addEvent('domready',function(event){
	$('testdrive').addEvent('focus',function(event){
		if (this.value=='Start typing your testdrive name')
			this.value='';
	});
	
	ac = new AutoComplete('testdrive',$base+'ajax/home/login',{
		listClass:'returnedSchool',
		itemHoverClass:'selectedSchool',
		format:'html',
		onComplete:function(selected){
			if (selected.id == 'noresults') return;
			var schoolname = selected.getFirst().getText();
			var schooldata = selected.id.match(/(\w+)_(\d+)/);
			var schoolid = schooldata[2];
			var schooldomain = schooldata[1];
			$('loginForm').setAttribute('action','http://'+schooldomain+'.digication.com/login_remote.digi');
			$('testdrive').value = schoolname;
		}
	});
});

//*/

window.addEvent('domready', function() {
 
   var s= new Autocompleter.Request.JSON('school_or_district', '/ajax/home/login', {
        'postVar': 'search'
    });
 
});