jQuery.fn.extend({fcToggle:function(){if(typeof(jQuery.cookie)!="undefined"){cookie=jQuery.cookie("fcExpandedContents")}else{cookie=""}if(cookie==null){cookie=""}function a(c,b){fclink=jQuery(c);fccontent=jQuery(c).next();fcparent=jQuery(c).parent();if(fclink.is(".expanded")||fcparent.is(".expanded")){fccontent.hide((!b?"slow":null));fclink.removeClass("expanded");fclink.addClass("colapsed")}else{fccontent.show((!b?"fast":null));fclink.removeClass("colapsed");fclink.addClass("expanded")}fcparent.removeClass("expanded");if(!b&&fclink.attr("name")){if(cookie.indexOf("|"+fclink.attr("name").replace(/^fc/,""))==-1){cookie=cookie+"|"+fclink.attr("name").replace(/^fc/,"")}else{cookie=cookie.replace(new RegExp("\\|"+fclink.attr("name").replace(/^fc/,""),"g"),"")}if(typeof(jQuery.cookie)!="undefined"){jQuery.cookie("fcExpandedContents",cookie,{expires:10})}}}return this.each(function(){jtag=jQuery(this);if(jtag.attr("name")&&cookie.indexOf("|"+jtag.attr("name").replace(/^fc/,""))!=-1){a(this,true)}jtag.click(function(){a(this)})})}});