$(document).ready(function() {
//slider logo
var countS = $('input').length;
var timerId1 = 0;
test = 1;
    timerId1 = window.setInterval(function(){
        $('.menuContener').fadeTo('fast',0.2);
        $('#mainText').hide();
        $('#mainShort').fadeIn();
        $('.imgContener').fadeOut('fast');
        test++;
        $('.ajaxLoader').show();
        if(test==countS+1){test=1}
        var foto = $('#inputSmallContenerImg'+test).val();
        $('.imgContener').fadeIn('slow').load('view/load.php?foto='+foto,loader);
    },8000)
    $('#mainShort').mouseover(function(){
        clearInterval(timerId1);
        $('.menuContener').fadeTo('fast',1);
        $(this).hide();
        $('#mainText').fadeIn();
    })

function loader(){
        $('.ajaxLoader').hide();
    }

})



