 function fade_efekat() {
        $("#changing_pic1 img:last").fadeOut(function(){
            
            $("#changing_pic1").prepend('<img title="' + $(this).attr("title") + '" rel="' + $(this).attr("rel") + '" src="' + $(this).attr("src") + '" width="250" height="112" />');
            $(this).remove();
        })
        
        $("#changing_pic2 img:last").fadeOut(function(){
            
            $("#changing_pic2").prepend('<img title="' + $(this).attr("title") + '" rel="' + $(this).attr("rel") + '" src="' + $(this).attr("src") + '" width="250" height="112" />');
            $(this).remove();
        })
        
        /*$("#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();
            })*/
            
        $("#testimonial_text p:last").hide(0, function(){
                  $("#testimonial_text").prepend("<p class='display_none'>" + $(this).html() + "</p>");
                  $(this).remove();
                  $("#testimonial_text p:last").show();
            })
            
        $("#testimonial_who p:last").hide(0, function(){
                  $("#testimonial_who").prepend("<p class='display_none'>" + $(this).html() + "</p>");
                  $(this).remove();
                  $("#testimonial_who p:last").show();
            })
            
        $("#testimonials_logo a:last").hide(0, function(){
                  $("#testimonials_logo").prepend("<a class='display_none' href='" + $(this).attr("href") + "'>" + $(this).html() + "</a>");
                  $(this).remove();
                  $("#testimonials_logo a:last").show();
            })
        
    }

$(window).load(function() {
   
   //setInterval ( "fade_efekat()", 5000 );       
    
})
