 function populate(){
 fall = $("div.article").length - 1;
 while (btop <= mheight * 1.1 )
 { 
 $("div.article:eq(" + ccount + ")").clone().css("top", btop).css("position", "absolute").insertAfter("div.article:eq(" + fall + ")");
 btop = btop + $("div.article:eq(" + ccount + ")").height();
 ccount = ccount + 1;
 fall = $("div.article").length - 1;
 };
 };
