function initTabbedLists(a){switch(a){default:case"fade":a=function(b,c){b.fadeOut("fast",function(){b.removeClass("active_content");c.fadeIn("fast");c.addClass("active_content")})};break;case"slide":a=function(b,c){b.slideUp("fast",function(){b.removeClass("active_content");c.slideDown("fast");c.addClass("active_content")})};break;case"size":a=function(b,c){b.hide("fast",function(){b.removeClass("active_content");c.show("fast");c.addClass("active_content")})};break}$(".tabset").show();$(".tabbedList .tab a").click(function(){var f=$(this);var b=0;var d=$(this).parents(".tabbedList");var g=d.find(".tab a");g.each(function(j,i){if($(i).get(0)==f.get(0)){b=j}});g.removeClass("active_tab");f.addClass("active_tab");var h=d.find(".tab_content");var c=d.find(".active_content");var e=$(h[b]);a(c,e);return false})};
