$(document).ready(function(){
    $('.galery .item1 .Img').click(function(){
         document.location.href = $(this).parent().find('a').attr('href');
    });

    $('a[show_all_items]').click(function(){

        $(this).hide();
        $('span[show_all_items]').show();

        $('a[show_items_video_only]').show();
        $('span[show_items_video_only]').hide();

        $('div[items_video_only]').fadeOut('1000', function(){  $('div[items_all]').fadeIn('1000'); });

        return false;
    });

    $('a[show_items_video_only]').click(function(){

        $(this).hide();
        $('span[show_items_video_only]').show();

        $('a[show_all_items]').show();
        $('span[show_all_items]').hide();

        $('div[items_all]').fadeOut('1000', function(){  $('div[items_video_only]').fadeIn('1000'); });

        return false;
    });

    if( ! $('div[items_video_only] .item1').length > 0 ) $('.view').hide();


});