$(document).ready(function(){    

    if (isFrontPage)
    {
        intID = setInterval(function(){
            $('#aFoto').trigger('click');
        }, ssTime );
    }

    if ($('#tInner').length != 0)
    {
        max = $('#tInner img').size();
        var tWidth = (max*imgW)+'px';
        $('#tInner').css('width', tWidth);

        if (max <= imgs )
            isNav = false;
        else
            isNav = true;
    }
    else
    {
        max = 18;
    }

    if (!block){
    $('.thumb:first').find('img').animate(
        { opacity: 1 },
        500
    );}

    nr = $('.thumb:first').find('img').attr('id');

    if (!block)
    {
        $('#content').stop(true, true).fadeOut('normal', function(){
            $('#content').html('');
            $('#content').load($('.thumb:first').attr('href'), function(){
                $('#content').fadeIn();
            });
        });
    }
 
});

