/*!
Custom scripts for TDA web site
*/
jQuery.noConflict();
var $j = jQuery;

$j(function() {
		   		$j('#tabbedContent').css("visibility", "visible");
                $j('#container-1 > ul').tabs({ fx: { opacity: 'show' } });
                /*
				$j('#container-1 > ul').tabs();
				$j('#container-2 > ul').tabs({ selected: 1 });
                $j('#container-3 > ul').tabs({ fx: { height: 'toggle' } });
                $j('#container-4 > ul').tabs({ fx: { opacity: 'toggle' } });
                $j('#container-5 > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
                $j('#container-6 > ul').tabs({
                    fx: { opacity: 'toggle', duration: 'fast' },
                    select: function(ui) {
                        alert('select');
                    },
                    show: function(ui) {
                        alert('show');
                    }
                });
                $j('#container-7 > ul').tabs({ fx: [null, { height: 'show', opacity: 'show' }] });
                $j('#container-8 > ul').tabs();
                $j('#container-9 > ul').tabs({ disabled: [2] });
                $j('<p><a href="#">Remove 4th tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
                    $j('#container-9 > ul').tabs('remove', 3);
                    return false;
                });
                $j('<p><a href="#">Insert new tab at 2nd position<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
                    $j('#container-9 > ul').tabs('add', '#inserted-tab', 'New Tab', 1);
                    return false;
                });
                $j('<p><a href="#">Append new tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
                    $j('#container-9 > ul').tabs('add', '#appended-tab', 'New Tab');
                    return false;
                });
                $j('<p><a href="#">Disable 3rd tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
                    $j('#container-9 > ul').tabs('disable', 2);
                    return false;
                });
                $j('<p><a href="#">Enable 3rd tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
                    $j('#container-9 > ul').tabs('enable', 2);
                    return false;
                });
                $j('<p><a href="#">Select 3rd tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
                    $j('#container-9 > ul').tabs('select', 2);
                    return false;
                });
                $j('<p><a href="#">Get selected tab<\/a><\/p>').prependTo('#fragment-22').find('a').click(function() {
                    alert( $j('#container-9 > ul').data('selected.tabs') );
                    return false;
                });
                $j('#container-10 > ul').tabs({ selected: null, unselect: true });
                $j('#container-11 > ul').tabs({ event: 'mouseover' });*/
            });

