﻿var LM = {};

LM.Index = {
	SetFields: function() {
		$$('#topfields input[type=text],#topfields input[type=password]').addEvents({
			'focus': function() {
				if (this.get('value') == this.defaultValue)
					this.set('value', '');
			},
			'blur': function() {
				if (this.get('value') == "")
					this.set('value', this.defaultValue);
			}
		})
	}
}