function addFollow(A,B,C){$j(A).hide();
$j.ajax({type:"POST",url:Follows.FOLLOW_URL,data:"type="+B+"&followee="+C,success:function(D){$j(A).hide();
$j(A).prev(".responseFollow").html(D);
$j(A).prev(".responseFollow").fadeIn(500);
$j(A).prev(".responseFollow").highlight();
$j(A).prev(".responseFollow").fadeOut(4000,function(){$j(A).fadeIn(500)
})
},error:function(D){$j(A).fadeIn(500)
}})
}function deleteFollow(B,C,A){$j(B).hide();
$j.ajax({type:"POST",url:Stylehive.HIVE_ALTERNATE_BASE_URL+"/ajax/hive/following/delete.htm",data:"follow="+A,dataType:"json",success:function(D){if(D.success){$j(B).prev(".responseFollow").html("success");
$j(B).prev(".responseFollow").fadeIn(500);
$j(B).prev(".responseFollow").highlight();
$j(B).prev(".responseFollow").fadeOut(4000);
$j(C).fadeOut(3000)
}else{$j(B).fadeIn(500)
}}})
}function changeSortOrder(B){var C=$j("#menu_sorter");
var A=Stylehive.SUNFLOWER_BASE_URL+"/person/"+B+"/followers/"+C.val()+"/0";
window.location=A
}function changeSortOrderMyHive(){var B=$j("#menu_sorter");
var A=Stylehive.SUNFLOWER_BASE_URL+"/myhive/followers/"+B.val()+"/0";
window.location=A
};