function add_interest(a){$("#interests_"+a+" a").addClass("checked"),$.post("/add_interest/",{interest_id:a},function(b){$("#your_tags li").length==0&&$("#your_tags_blank").hide(),$("#your_tags").prepend(b.html),$("#your_interests_"+a).effect("highlight")})}function remove_interest(a){$("#interests_"+a+" a").removeClass("checked"),$.post("/remove_interest/",{interest_id:a},function(b){$("#your_interests_"+a).remove(),$("#your_tags li").length==0&&$("#your_tags_blank").show()})}function interest_handler(a){$("#interests_"+a+" a").hasClass("checked")?remove_interest(a):add_interest(a)}function prepare_interest_list(){}var queue=new Array;$(document).ready(function(){$("a.profile-settings").toggle(function(){return $(".profile-link-generic").show(),!1},function(){return $(".profile-link-generic").hide(),!1}),$(".gender-toggle").toggle(function(){$(this).css("background-position","0 100%"),$(this).html("guy")},function(){$(this).css("background-position","0 0"),$(this).html("girl")}),prepare_interest_list(),$("body.user-flow .questions a span").each(function(a){$(this).height()>24&&$(this).css("top","-.5em")})})
