$(function(){$(".showhide_collapsed").each(function(){$(this).find("h3").wrapInner('<a id="convertedlink" href="#" class="VC-single VC-staticTxt"></a>');
$(this).append('<a id="assosiatedshowhide" href="#" class="VC-single VC-display" title="Hide">'+modulesHideText+"</a>");
var A=this;
var B=$(this).find("#assosiatedshowhide");
var C=$(this).find("#convertedlink");
B.click(function(D){D.preventDefault();
if($(this).text()==modulesShowText){$(this).text(modulesHideText);
$(A).removeClass("showhide_collapsed").addClass("showhide_expanded")
}else{$(this).text(modulesShowText);
$(A).removeClass("showhide_expanded").addClass("showhide_collapsed")
}$(A).next().toggle()
});
C.click(function(D){D.preventDefault();
B.trigger("click")
});
B.trigger("click")
})
});