$(document).ready
(
	function ()
	{
		$('#login_place').live('click',
			function()
			{
				var target_offset = $('#' + this.id).offset();
				collapse_popup();
				params = {'act' : 'load_login_form'};
				$.get('index.php', params,
					function (data)
					{
						params = 
						{
							'position': 'absolute',
							'top': parseInt(target_offset.top) + 'px',
							'left': parseInt(target_offset.left) + 'px',
							'width':'280px',
							'height':'160px',
							'margin-bottom': '2px', 
							'background-color': '#ffffff',
							'border': '1px solid #000000'
						};
						$('#popup_container').css(params);
						$('#popup_container').html(data);
					}
				)
			}
		);
		$('.btn_close').live('click',
			function ()
			{
				collapse_popup();
			}
		);
		$('#btn_login').live('click',
			function ()
			{
				params = {'act' : 'do_login', 'user_name' : $('#user_name').val(), 'password' : $('#password').val()};

				$.get('index.php', params,
					function (data)
					{
						$('#popup_container').html(data);
					}
				)
			}
		);
	}

);

function collapse_popup()
{
	$('#popup_container').html('');
	$('#popup_container').removeClass();
	$('#popup_container').removeAttr('style'); 
}


