var body = "";
var headlines = new Array();
var page = 1;
var pages = 1;
var pagesize = 20;
var total = 20;
page = 1;
pages = 25;
total = 500;
headlines.push({"dateTime":"Feb 08, 2010 17:01 EST",
"headline":"UPDATE 3-Ex-Intel exec admits conspiring with Rajaratnam", "article":"urn:newsml:reuters.com:20100208:nN08206265:2"});
headlines.push({"dateTime":"Feb 08, 2010 15:40 EST",
"headline":"CORRECTED-BRIEF-Rajiv Goel pleads guilty in Galleon case", "article":"urn:newsml:reuters.com:20100208:nWEN9878:9"});
headlines.push({"dateTime":"Feb 08, 2010 13:28 EST",
"headline":"INTERVIEW-Galleon figure Chiesi stands by Rajaratnam", "article":"urn:newsml:reuters.com:20100208:nN08243281:2"});
headlines.push({"dateTime":"Feb 08, 2010 13:00 EST",
"headline":"Intel� Itanium� 9300 Processor Raises Bar for Scalable, Resilient Mission-Critical Computing INTC.O ", "article":"urn:newsml:reuters.com:20100208:nBw085472a:2"});
headlines.push({"dateTime":"Feb 08, 2010 08:21 EST",
"headline":"UPDATE 2-Amino Tech turns to FY pretax loss, wins new contract", "article":"urn:newsml:reuters.com:20100208:nSGE6170AQ:2"});
headlines.push({"dateTime":"Feb 08, 2010 07:46 EST",
"headline":"RPT-Alongside gags, Super Bowl ads plumb male psyche", "article":"urn:newsml:reuters.com:20100208:nN07229464:4"});
headlines.push({"dateTime":"Feb 08, 2010 05:43 EST",
"headline":"Intel Israel exports jump 145 pct, seeks grant for expansion", "article":"urn:newsml:reuters.com:20100208:nLDE6170DR:2"});
headlines.push({"dateTime":"Feb 08, 2010 06:58 EST",
"headline":"Intel Gets to the Core with Super Bowl Ad INTC.O ", "article":"urn:newsml:reuters.com:20100207:nBw075001a:4"});
headlines.push({"dateTime":"Feb 05, 2010 19:15 EST",
"headline":"UPDATE 3-Money manager, arts patron Vilar gets 9 yrs prison", "article":"urn:newsml:reuters.com:20100206:nN05132434:2"});
headlines.push({"dateTime":"Feb 07, 2010 16:38 EST",
"headline":"Wind River to Add Virtutech Simics Products to Comprehensive Embedded Software Portfolio INTC.O ", "article":"urn:newsml:reuters.com:20100205:nBw055221a:3"});
headlines.push({"dateTime":"Feb 04, 2010 14:37 EST",
"headline":"UPDATE 3-Insider trading case of 2007 led to Galleon", "article":"urn:newsml:reuters.com:20100204:nN04238844:6"});
headlines.push({"dateTime":"Feb 04, 2010 14:00 EST",
"headline":"Business PCs Arrive with New Intel Core vPro Processor Family INTC.O ", "article":"urn:newsml:reuters.com:20100204:nBw045347a:3"});
headlines.push({"dateTime":"Feb 04, 2010 13:00 EST",
"headline":"Intel unveils new business microprocessors", "article":"urn:newsml:reuters.com:20100204:nN04157857:2"});
headlines.push({"dateTime":"Feb 04, 2010 11:36 EST",
"headline":"BRIEF-Ex-Intel Capital exec ready to waive indictment -US prosecutors", "article":"urn:newsml:reuters.com:20100204:nWEN9748:4"});
headlines.push({"dateTime":"Feb 04, 2010 22:33 EST",
"headline":"FACTBOX-Mobile software market increasingly crowded", "article":"urn:newsml:reuters.com:20100204:nLDE6132GB:7"});
headlines.push({"dateTime":"Feb 04, 2010 09:31 EST",
"headline":"Critical Alerts for Intel, MetLife, Genzyme, AOL, and Ctrip.com Released by Seven Summits Research", "article":"urn:newsml:reuters.com:20100204:nPnCG49529:2"});
headlines.push({"dateTime":"Feb 03, 2010 18:19 EST",
"headline":"UPDATE 2-ON Semiconductor Q4 beats estimates, sees strong Q1 rev", "article":"urn:newsml:reuters.com:20100203:nSGE6120N1:2"});
headlines.push({"dateTime":"Feb 03, 2010 15:00 EST",
"headline":"Intel Gets to the Core with Super Bowl Ad INTC.O ", "article":"urn:newsml:reuters.com:20100203:nBw035173a:2"});
headlines.push({"dateTime":"Feb 03, 2010 14:28 EST",
"headline":"ANALYSIS-Apple's iPad: trouble for Intel's mobile push?", "article":"urn:newsml:reuters.com:20100203:nN03170487:2"});
headlines.push({"dateTime":"Feb 02, 2010 16:47 EST",
"headline":"UPDATE 5-Galleon fight on wiretaps grows amid new pleas", "article":"urn:newsml:reuters.com:20100202:nN02204990: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 += ""+
"| Time | "+
" | "+
"News Story | ";
for(var i = 0; i < headlines.length; i++){
out += " | "+
" | "+
"";
var headline = headlines[i];
out += "| "+headlines[i].dateTime+" | "+
" | "+
""+
""+headlines[i].headline+"";
out += " | ";
}
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 + "
";
}