var aamft = {

	/*============================================================*/
	init : function(){
		var s = ohana.grabElem('searchForm');
		var divs = document.getElementsByTagName('div');
		for(i = 0; i < divs.length; i++) if( (divs[i].className).indexOf('columnRight') > -1){
			var col = divs[i];
			break;
		}
		if(col){
			s.style.width = col.style.width;
			s.style.display = 'block';
			newW = ohana.getElementWidth(s) - 100;
			s['criteria'].style.width = newW + 'px';
		}else{
			s.style.display = 'none';
		}
	},
	/*============================================================*/
	topLogin : {
		username : {
			text : 'Username',
			focus : function(e){
				if(e.value == aamft.topLogin.username.text) e.value = '';
				e.style.color = '#126d89';
			},
			blur : function(e){
				if(e.value == '') e.value = aamft.topLogin.username.text;
				e.style.color = '';
			}
		},
		password : {
			text : 'Password',
			focus : function(e){
				if(e.value == aamft.topLogin.password.text) e.value = '';
				e.style.color = '#126d89';
				e.type = 'password';
			},
			blur : function(e){
				if(e.value == ''){
					e.type = 'text';
					e.value = aamft.topLogin.password.text;
				}
				e.style.color = '';
			}
		}
	}
	/*============================================================*/
}