window.addEvent('domready', function() {
	$('fl').set('value',Browser.Plugins.Flash.version.toInt());
	$('login').removeClass('hidden');
	$('show-login').addEvent('click', function(e) {
		e.stop();
		forma.slideIn();
	});
	var func = function() { forma.slideOut(); }
	$('login').addEvent('mouseleave', function() {
		this.store('delay',func.delay(2000));
	});
	$('login').addEvent('mouseenter', function() {
		$clear(this.retrieve('delay'));
	});
	var forma = new Fx.Slide('login',{
		duration: 500,
		transition: Fx.Transitions.Bounce.easeOut
	}).hide();
	
	$('username').addEvents({
		'focus' : function() {
			if (this.value == 'Lietotājvārds') {
				this.value = '';
			}
		},
		'blur' : function() {
			if (this.value == '') {
				this.value = 'Lietotājvārds';
			}
		}
	});
	$('password').addEvents({
		'focus' : function() {
			if (this.value == 'Parole') {
				this.value = '';
			}
		},
		'blur' : function() {
			if (this.value == '') {
				this.value = 'Parole';
			}
		}
	});
});