﻿$(document).ready(function () {
    /* start Show-Hide */
    $('dl.show-hide-a:eq(0)> dd').hide();
    $('dl.show-hide-a:eq(0)> dt').click(function () {
        $(this).next().slideToggle('fast');
    });

    $('dl.show-hide-b:eq(0)> dd').show();
    $('dl.show-hide-b:eq(0)> dt').click(function () {

        $(this).slideToggle('fast');
        $(this).next().slideToggle('fast');
    });

    $('dl.show-hide-c:eq(0)> dd').hide();
    $('dl.show-hide-c:eq(0)> dt').click(function () {
        $(this).next().slideToggle('fast');
    });
    /* end Show-Hide */

    //  Setup Tabs
    $('#sections').tabs();
});

