var PersonalPage={AddToFavorite:function(a){jQuery.post(CLAjaxPreffix+"/company/be_company_friend",{e:a},function(b){jQuery("#addtofavorite").html("&times; &nbsp;Удалить из избранных").unbind().click(function(){return PersonalPage.DelFromFavorite(jQuery(this).attr("rel"))})},"json");return false},DelFromFavorite:function(a){jQuery.post(CLAjaxPreffix+"/company/no_company_friend",{e:a},function(b){jQuery("#addtofavorite").html("Добавить в Мои места").unbind().click(function(){return PersonalPage.AddToFavorite(jQuery(this).attr("rel"))})},"json");return false},ThisEstFavorite:function(a){jQuery.post(CLAjaxPreffix+"/company/in_company_friend",{e:a},function(b){if(b.count!=0){jQuery("#addtofavorite").html("&times; &nbsp;Удалить из избранных").unbind().click(function(){return PersonalPage.DelFromFavorite(jQuery(this).attr("rel"))})}else{jQuery("#addtofavorite").html("Добавить в Мои места").unbind().click(function(){return PersonalPage.AddToFavorite(jQuery(this).attr("rel"))})}},"json")}};jQuery(function(){if(jQuery("#addtofavorite").size()>0){PersonalPage.ThisEstFavorite(jQuery("#addtofavorite").attr("rel"))}});
