 $(document).ready(function() {
        $('.galleryPhoto').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 1.0 }, 500);
            },
           function() {
               $(this).stop().animate({ opacity: 0.6}, 500);
           });
        });
    });



 $(document).ready(function() {
        $('.portk').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 1 }, 400);
            },
           function() {
               $(this).stop().animate({ opacity: 0}, 400);
           });
        });
    });
