$(function() {

                $('#container-1 > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle', duration: 'slow' } });







/*

$('#container-1 > ul').tabs('add', '#legal', 'legales'); // add new tab at the end
$('#container-1 > ul').tabs('remove', 4); // remove 4th tab
$('#container-1 > ul').tabs({ disabled: [1, 3] });

*/








				// otras opciones:
/*
				$('#container-0 > ul').tabs();
                $('#container-0 > ul').tabs({ selected: 1 });
                $('#container-3 > ul').tabs({ fx: { height:  'toggle' } });
                $('#container-4 > ul').tabs({ fx: { opacity: 'toggle' } });
                $('#container-5 > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });

				$('#container-10 > ul').tabs({ selected: null }); // start with all tabs hidden
				$('#container-10 > ul').tabs({ unselect: true }); // selected tab closes on click
*/

/*

    $('#container-1 > ul').tabs({
                load: function(e, ui) 	{
            $('a', ui.panel).livequery("click",function() {
                $(ui.panel).load(this.href);
                return false;
            					});
        								}
    														});
   
*/
/*
var $tabs = $('#example > ul').tabs(); // first tab selected

$('#my-text-link').click(function() { // bind click event to link
    $tabs.tabs('select', 2); // switch to third tab
    return false;
});
*/

        });





