$(document).ready(function(){
	$('a.toggle').click(function()
  {
    $(this).parent().next().toggle();
    return false;
  }
);
});

            $(function() {
                $('#container-1 > ul').tabs();
                $('#container-2 > ul').tabs({ selected: 1 });
                $('#container-3 > ul').tabs({ fx: { height: 'toggle' } });
                $('#container-4> ul').tabs({ fx: { opacity: 'toggle' } });
                $('#certificationShowcase > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
                $('#container-6 > ul').tabs({
                    fx: { opacity: 'toggle', duration: 'fast' },
                    select: function(ui) {
                        alert('select');
                    },
                    show: function(ui) {
                        alert('show');
                    }
                });
            });
