var body = ""; var headlines = new Array(); var page = 1; var pages = 1; var pagesize = 20; var total = 20; page = 1; pages = 1; total = 12; headlines.push({"dateTime":"Feb 07, 2010 16:28 EST", "headline":"HEADLINE STOCKS-U.S. small/midcap stocks to watch on Feb 5", "article":"urn:newsml:reuters.com:20100205:nSGE6140EL:5"}); headlines.push({"dateTime":"Feb 07, 2010 07:37 EST", "headline":"UPDATE 1-K12 posts higher Q2 profit on enrollment growth", "article":"urn:newsml:reuters.com:20100205:nSGE6140GO:3"}); headlines.push({"dateTime":"Feb 05, 2010 23:49 EST", "headline":"BRIEF-K12 reports Q2 results", "article":"urn:newsml:reuters.com:20100205:nWNAB3760:9"}); headlines.push({"dateTime":"Feb 05, 2010 23:48 EST", "headline":"K12 Inc. Reports Second Quarter 2010 Results LRN.N ", "article":"urn:newsml:reuters.com:20100205:nBw055171a:7"}); headlines.push({"dateTime":"Jan 13, 2010 16:15 EST", "headline":"K12 Inc. Announces February Investor Conferences LRN.N ", "article":"urn:newsml:reuters.com:20100113:nBw136425a:1"}); headlines.push({"dateTime":"Nov 30, 2009 16:14 EST", "headline":"K12 Inc. to Present at Wedbush Conference LRN.N ", "article":"urn:newsml:reuters.com:20091130:nBw305942a:1"}); headlines.push({"dateTime":"Nov 20, 2009 10:57 EST", "headline":"UPDATE 1-PE-owned Archipelago Learning up in Nasdaq debut", "article":"urn:newsml:reuters.com:20091120:nN20197137:2"}); headlines.push({"dateTime":"Nov 20, 2009 10:00 EST", "headline":"UPDATE 1-Archipelago Learning IPO prices within range", "article":"urn:newsml:reuters.com:20091119:nN19197136:3"}); headlines.push({"dateTime":"Nov 17, 2009 07:04 EST", "headline":"BRIEF-Apollo global names CFO", "article":"urn:newsml:reuters.com:20091117:nWNAB6977:5"}); headlines.push({"dateTime":"Nov 06, 2009 15:40 EST", "headline":"BRIEF-K12 reports Q1 results", "article":"urn:newsml:reuters.com:20091106:nWNAB1985:10"}); headlines.push({"dateTime":"Nov 06, 2009 15:46 EST", "headline":"K12 Inc. Reports First Quarter 2010 Results LRN.N ", "article":"urn:newsml:reuters.com:20091106:nBw065126a:7"}); headlines.push({"dateTime":"Nov 04, 2009 08:59 EST", "headline":"K12 Inc. to Present at the Signal Hill Education Preview Investor Conference LRN.N ", "article":"urn:newsml:reuters.com:20091104:nBw045356a:2"}); $(document).ready(function(){ var out = ""; if(body != null && body.length > 0){ out += body; } var white = true; if(headlines.length > 0){ if(white) color = "ffffff"; else color = "eeeeee"; white = !white; out += getPagination() + ""+ ""+ "
"+ ""; out += ""+ ""+ ""+ ""; for(var i = 0; i < headlines.length; i++){ out += ""+ ""+ ""; var headline = headlines[i]; out += ""+ ""+ ""; } out += "
 Time News Story
 "+headlines[i].dateTime+""+ ""+headlines[i].headline+""; out += "
"; } $('div#news').html(out); }); function getPagination(){ var ret = "
"; for(var i = 1; i < (pages + 1); i++){ var left = (i - 1) * pagesize; var right = left + pagesize; if(right > total) right = total; var label = "["+left+"-"+right+"]"; if(i == page){ ret += ""+label+""; }else{ ret += ""+label+""; } } return ret + "
"; }