﻿$(document).ready(
    function() {

        $('div.miniTabs')
            .next()
            .nextAll()
            .hide();

        $('div.miniTabs a')
            .click(function(event) {
                $(this).parents('div.miniTabs').find('a').attr('style', 'text-decoration: underline; cursor: hand; color: #800');
                $(this).attr('style', 'text-decoration: none; cursor: text;');
                $(this).parents('div.miniTabs').nextAll().hide();
                var selector = 'div#' + $(this).attr('id') + 'Pane';
                $(selector).show();
                return false;
            });

        wrapUpContent();
    });