Event.observe(window, "load", function() {
    
    if(Object.isElement($("login"))) { Login.LoadTo("login"); Login.LoggedIn = function(role) { window.location = "http://www.comfy.hu/" } }
    
    if(Object.isElement($("directInvitation"))) { BeginPage.SetEvents(); }
    
    if(Object.isElement($("menu"))) { Menu.SetEvents(); }
    
    if(Object.isElement($("iconView"))) { IconView.SetEvents(); IconView.ResizeContent(); }
    
    if(Object.isElement($("relationView"))) { RelationView.SetEvents(); RelationView.ResizeContent(); }
    
    if(Object.isElement($("tools"))) { var tools = new Tools({container: "tools", url: "Components/Tools/Tools.php", role: AccountRole}); tools.Show(); }
    
});

Event.observe(window, "resize", function()
{
    IconView.ResizeContent();
    RelationView.ResizeContent();
    if(Object.isElement($("profileForm"))) { Profile.AlignForm("content"); }
});

