﻿// JScript File


    jQuery(document).ready(function($) {
        // initialize tooltip
        $("#dyna img[title]").tooltip({

           // tweak the position
           offset: [10, 2],
            //tipClass: 'tooltip bottom',
           // use the "slide" effect
           effect: 'slide'

        // add dynamic plugin with optional configuration for bottom edge
        }).dynamic({ bottom: { direction: 'down', bounce: true } });
        
        $("#album_files img[title]").tooltip({

           // tweak the position
           offset: [10, 2],
            //tipClass: 'tooltip bottom',
           // use the "slide" effect
           effect: 'slide'

        // add dynamic plugin with optional configuration for bottom edge
        }).dynamic({ bottom: { direction: 'down', bounce: true } });
        
        
        $("#video-files img[title]").tooltip({

           // tweak the position
           offset: [10, 2],
            //tipClass: 'tooltip bottom',
           // use the "slide" effect
           effect: 'slide'

        // add dynamic plugin with optional configuration for bottom edge
        }).dynamic({ bottom: { direction: 'down', bounce: true } });
        
        // Show and hide comment form in video page
        $('#comment-form').click(function(){
            $('#video-comment-form').toggle(400);
        });    
        
         $("#video_album_files").jcarousel(
        {   scroll: 3,
            animation:"slow"
        });
     });
