  function fade_efekat() {
        $("#changing_img img:last").fadeOut(function(){
            
            $("#changing_img").prepend('<img title="' + $(this).attr("title") + '" rel="' + $(this).attr("rel") + '" src="' + $(this).attr("src") + '" width="463" height="245" />');
            $(this).remove();
            var novi_url = $("#changing_img img:last").attr("rel");
            var novi_title = $("#changing_img img:last").attr("title");
            $("#changing_frame").attr("href", novi_url);
            $("#changing_frame").attr("title", novi_title);
        })
        
        $("#changing_client_name .natpis:last").hide(0,function(){
                  $("#changing_client_name").prepend("<p class='natpis display_none'>" + $(this).html() + "</p>");
                  $(this).remove();
                  $("#changing_client_name .natpis:last").show();
            })
            
        $("#testimonials p:last").hide(0, function(){
                  $("#testim_open").after("<p class='display_none'>" + $(this).html() + "</p>");
                  $(this).remove();
                  $("#testimonials p:last").show();
            })
        
    }

$(window).load(function() {
    $(".logo_image").each(function(index) {
    var visina = $(this).height();
    $(this).css("margin-top", (150 - visina) / 2);
    $(this).css("display", "block");
    
    });
    
    $("#logos img").reflect({
        opacity: .4,
        height: .4
    });
    
   
   setInterval ( "fade_efekat()", 5000 );       
    
})
