$(document).ready(function () {    
    
    $('.other_websites').hide();
        
    $('#show_other').toggle(
        function () {
            //show its submenu
            $('.other_websites').slideDown(400);
        }, 
        function () {
            //hide its submenu
            $('.other_websites').slideUp(400);
        }
    );
    
});

 $(document).ready(function () {
            $('.portfolio_caption-0').hide();

            $('.portfolio_thumb-0').hover(function () {
                $('.portfolio_caption-0').toggle(300);
            });
        });

 $(document).ready(function () {
            $('.portfolio_caption-1').hide();

            $('.portfolio_thumb-1').hover(function () {
                $('.portfolio_caption-1').toggle(300);
            });
        });
