﻿$().ready(function() {    
    TorneoTabs.init();
});

TorneoTabs = {

init: function() {		
        $(".widget > ul").tabs({ fx: { height: 'toggle', opacity: 'toggle' } });        
        $(".widget2 > ul").tabs({ fx: { height: 'toggle', opacity: 'toggle' } });        
        $(".accordion .cabeceraGrupo:first").addClass("active");
	    $(".accordion .grupo:not(:first)").hide();

	    $(".accordion .cabeceraGrupo").click(function(){
		    $(this).next(".grupo").slideToggle("normal")
		    .siblings(".grupo:visible").slideUp("normal");
		    $(this).toggleClass("active");
		    $(this).siblings(".cabeceraGrupo").removeClass("active");
	    });
    }
}
