
/* ----------------------------------------- */
/* functions not attached to a jQuery object */
/* ----------------------------------------- */
/* none */
/* ---- */

/* -------------------- */
/* jQuery functions     */
/* these extend jQuery  */
/* -------------------- */
$(function() {
        /* ------------------------------------------------------------ */
        /* for the home and about tabs, we change the behavior slightly */
        /* ------------------------------------------------------------ */
        $("#tabbed_home").accordion(
            { autoHeight: false, navigation: false, collapsible: true} );

        $("#tabbed_publish").accordion(
            { autoHeight: false, navigation: false, collapsible: true} );

        $("#tabbed_indexing").accordion(
            { autoHeight: false, navigation: false, collapsible: true} );

        $("#tabbed_examples").accordion(
            { autoHeight: false, navigation: false, collapsible: true} );

        $("#tabbed_testimonials").accordion(
            { autoHeight: false, navigation: false, collapsible: true} );

        $("#tabbed_websites").accordion(
            { autoHeight: false, navigation: false, collapsible: true} );

        $("#tabbed_credits").accordion(
            { autoHeight: false, navigation: false, collapsible: true} );

        $("#tabbed_affiliate").accordion(
            { autoHeight: false, navigation: false, collapsible: true} );

        $("#tabbed_other").accordion(
            { autoHeight: false, navigation: false, collapsible: true} );
            

        $(".linkclass").hover ( function(){ $(this).toggleClass('ui-state-hover');});

        $("#work").dialog({autoOpen: false, show: 'blind', hide: 'explode',
                title: "Judi's Work History", width: 700});
        $("#work_opener").click(function() { $('#work').dialog('open'); 
                return false; });

        $("#education").dialog({autoOpen: false, show: 'blind', hide: 'explode',
                title: "Judi's Education", width: 700});
        $("#education_opener").click(function() { $('#education').dialog('open'); 
                return false; });

        });

/* -------------------------------------------------------- */
/* once the document has been loaded, then this is executed */
/* -------------------------------------------------------- */
$(document).ready( function()
{
        /* ------------------------------------------------ */
        /* id of            does                            */
        /* verticalTabs	    Places tabs along the left side */
        /* horizontalTabs   Places tabs along the top       */
        /* ------------------------------------------------ */
        $("#verticalTabs").verticalTabs().show();
        $("#horizontalTabs").tabs();
        $("#havejavascript").switchClass('show','hide',0);

       // $(".MerilynLigget").clone().after(".Merilyn_Ligget");
});



