function popupClose()
{
  $('#login_form_p').each(function()
  {
    $(this).hide('slow');
  });
}

function popupShow()
{
  $('#login_form_p').each(function()
  {
    var elem = document.getElementById('title_'+log_title_id);
    var w = elem.offsetWidth;
    var h = elem.offsetHeight;
  
    var l = 0;
    var t = 0;
  
    while (elem)
    {
        l += elem.offsetLeft;
        t += elem.offsetTop;
        elem = elem.offsetParent;
    }
    
    $(this).css('left', l-10);
    $(this).css('top', t+h);

    $(this).show('slow');
  })
}

$(function()
{
  //popupShow();

  $('#title_'+log_title_id).bind('click', function() {
    if ($(this).hasClass("pressed"))
    {
      popupClose();
      $(this).removeClass("pressed");
    }
    else
    {
      popupShow();
      $(this).addClass("pressed")
    }
  })  
  
});
