skyline(); setInterval(function(){ skyline(); }, 1500); function skyline() { $("div").each(function(i){ var width = Math.floor((Math.random()*4) + 1) + "%"; var height = Math.floor((Math.random()*75) + 1) + "%"; var left = 12.5 + i*1.5 + "%"; $(this).css({ "width" : width, "height" : height, "left" : left }); }); }