// JavaScript Document
var boxes_array = new Array('login','login_password_dimenticato','login_password_submit_dimenticato');
var lastOpenBox = null;
function layer_openClose(layer, lstr)
{
	lastOpenBox = lstr;
	jQuery.each
	(
		boxes_array, function() 
		{
			if(layer == this)
			{
				if($('#'+this).is(":hidden"))
				{
					$('#'+this).slideDown
					(
						500
					);
				}
				else
				$('#'+this).slideUp(500);
			}
			else
			{
				if ($('#'+this).is(":visible"))
				$('#'+this).slideUp(500);
			}
		}
	);
}