﻿$(document).ready(function() {



    $('img.links').hover(
       function() {

           var src = $(this).attr('src');
           $(this).attr('src', src.replace('.gif', '2.gif'));


       },
       function() {

           var src = $(this).attr('src');
           $(this).attr('src', src.replace('2.gif', '.gif'));

       }
    );


    $('span#morecomments').click(
        function() {

            $('span#comments').show();
            $('span#morecomments').hide();
        }
    );

    $('.slideshow').cycle({
		fx: 'fade' ,
		timeout: 5000
    });
}); 




