setInterval(function() {
           $.ajax({
                        type: "GET",
                        url: '/ajax_partner.php',
                        success: function(html) {
                                $('#partnerBlock img').fadeOut(2000,function() {           
                                        $('#partnerBlock').html(html);
					$('#partnerBlock img').hide().fadeIn(2000);
                                });
                        }
          });
}, 6000);

