function show(obj) {
            if (document.getElementById(obj).style.display == 'none') {
                document.getElementById(obj).style.display = 'block';
            } else {
                document.getElementById(obj).style.display = 'none';
            }
        }

        $(function () {
        var tabContainers = $('div.tabs > div');
        tabContainers.hide().filter(':first').show();

        $('div.tabs ul.tabNavigation a').click(function () {
            tabContainers.hide();
            tabContainers.filter(this.hash).show();
            $('div.tabs ul.tabNavigation a').removeClass('selected');
            $(this).addClass('selected');
            return false;
        }).filter(':first').click();
    });
