$( function() {

    $('a[rel=lightbox],a[rel=lightbox-tour]').fancybox({'type':'image'});

    $('#morephotos').toggle( function () {
        var height = $( '#allanother table' ).height();
        $('#allanother').animate( {'height': height+'px' } );
        $(this).html('убрать');
    }, function () {
        $('#allanother').animate( {'height': '0'} );
        $(this).html('еще фотографии');
});

});

$( function() {

    $('a[rel=lightbox],a[rel=lightbox-tour]').fancybox({'type':'image'});

    $('#morephotos2').toggle( function () {
        var height = $( '#allanother table' ).height();
        $('#allanother').animate( {'height': height+'px' } );
        $(this).html('Убрать');
    }, function () {
        $('#allanother').animate( {'height': '0'} );
        $(this).html('Посмотреть полный список теплоходов');
});

    $('.faq-toggler a').toggle( function () {
            var height = $( '#faq-'+this.id+' span' ).height();
            $('#faq-'+this.id).animate( {'height': height+'px' } );
            $(this).css('border-bottom', ' 0px dashed;');
       }, function () {
            $('#faq-'+this.id).animate( {'height': '0'} );
            $(this).css('border-bottom', ' 1px dashed;');
    });

});

