
		$(document).ready(function()
		{
			
			$('#layer1_form').ajaxForm({
				target: '#content',
				success: function() 
				{
					$("#layer1").fadeOut();
				}				
			});			
			$("#layer1").hide();
						
			$('#preferences').click(function()
			{
				$("#layer1").show();
			});
			
			$('#close').click(function()
			{
				$("#layer1").fadeOut();
			});
			setTimeout('$("#layer1").fadeIn()',1000);
		});

