﻿// This allows pages with Galleries and Videos to show and hide descriptions under user control

jQuery(document).ready(function()
            {

            // Gallery Description 01
            $('img#HideGalleryDesc01').hide();
            $('p#GalleryDescText01').hide();

            $('img#ShowGalleryDesc01').click(function()
                       {
                        $(this).hide();
                        $('img#HideGalleryDesc01').show();
                        $('p#GalleryDescText01').show();
                       }
                   );
            
            $('img#HideGalleryDesc01').click(function()
                       {
                        $(this).hide();
                        $('img#ShowGalleryDesc01').show();
                        $('p#GalleryDescText01').hide();
                       }
                   );


            // Slideshow Pro Gallery Hints
            $('img#HideGalleryHints01').hide();
            $('p#GalleryHintsText01').hide();
            $('p#GalleryHintsText01').html('Photo Gallery Hints: Left-Mouse-Click toward right side of current picture to go to next picture. Left-Mouse-Click toward left side of current picture to go to last picture. Left-Mouse-Click in center of picture to stop and start slideshow. Click square w/arrow button in lower right of toolbar for fullscreen gallery. Once in Fullscreen gallery mode, hit the Esc key to exit fullscreen. Hold mouse pointer over picture to display caption if available.'
);

            $('img#ShowGalleryHints01').click(function()
                       {
                        $(this).hide();
                        $('img#HideGalleryHints01').show();
                        $('p#GalleryHintsText01').show();
                       }
                   );
            
            $('img#HideGalleryHints01').click(function()
                       {
                        $(this).hide();
                        $('img#ShowGalleryHints01').show();
                        $('p#GalleryHintsText01').hide();
                       }
                   );
             
                          
            // Video Description 01
            $('img#HideVideoDesc01').hide();
            $('p#VideoDescText01').hide();

            $('img#ShowVideoDesc01').click(function()
                       {
                        $(this).hide();
                        $('img#HideVideoDesc01').show();
                        $('p#VideoDescText01').show();
                       }
                   );
            
            $('img#HideVideoDesc01').click(function()
                       {
                        $(this).hide();
                        $('img#ShowVideoDesc01').show();
                        $('p#VideoDescText01').hide();
                       }
                   );


            // Video Description 02
            $('img#HideVideoDesc02').hide();
            $('p#VideoDescText02').hide();

            $('img#ShowVideoDesc02').click(function()
                       {
                        $(this).hide();
                        $('img#HideVideoDesc02').show();
                        $('p#VideoDescText02').show();
                       }
                   );
            
            $('img#HideVideoDesc02').click(function()
                       {
                        $(this).hide();
                        $('img#ShowVideoDesc02').show();
                        $('p#VideoDescText02').hide();
                       }
                   );




 });  // End of docready
