$(function() { /* * Tabs */ var _findTabs = function() { var _found = []; $(".tabs").each(function(_container) { var _data = { container : $(this), tabs : [] }; $(".tab", $(this)).each(function(_container) { var _theTab = { id : $(this).attr('id'), title : $("> h3", $(this)).text(), contents : $("div.tab-contents", $(this)) }; _data.tabs.push(_theTab); }); _found.push(_data); }); return _found; }; var _hideTab = function(_id) { $('#tabl-' + _id).removeClass('selected'); $('#tabc-' + _id).css('display', 'none'); }; var _showTab = function(_id) { $('#tabl-' + _id).addClass('selected'); $('#tabc-' + _id).css('display', 'block'); }; var _prepareTabContainer = function(_root) { _root.container.empty(); var _titles = $('