function mover(){
    var margin = parseInt($("#ul_logos").css('margin-left'));
    $("#ul_logos").css('margin-left', (margin-2)+"px");
    posicaoLI = $("#ul_logos li:first").position().left;
    widthLI = $("#ul_logos li:first").width();
    if( (posicaoLI+widthLI) < posicaoDiv ){
        var auxLI = $("#ul_logos li:first");
        $("#ul_logos li:first").remove();                       
        margin = parseInt($("#ul_logos").css('margin-left'));
        $("#ul_logos").css('margin-left', (margin+widthLI+3)+"px")
        $("#ul_logos").append(auxLI);
    }
    setTimeout('mover()', 50);
}

function setTamanhoUL(){
	var widthUL = 0;
	$("#ul_logos li").each(function(){
		widthUL += $(this).width();		
	});
	
	/*$("#ul_logos li img").each(function(){
		console.log($(this).height());		
	});*/
	
	$("#ul_logos").width(widthUL+100);
}