var body = "";
var headlines = new Array();
var page = 1;
var pages = 1;
var pagesize = 20;
var total = 20;
page = 1;
pages = 25;
total = 492;
headlines.push({"dateTime":"Feb 08, 2010 20:26 EST",
"headline":"DIARY-Philippines to Feb 25", "article":"urn:newsml:reuters.com:20100209:nSGE61800T:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:25 EST",
"headline":"Sansiri :Additional details related to Terms & Conditions of SIRI-W1 SIRI.BK ", "article":"urn:newsml:reuters.com:20100209:nSET290009:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:25 EST",
"headline":"BRIEF-Vulcan announces fourth quarter results", "article":"urn:newsml:reuters.com:20100209:nWEN9904:8"});
headlines.push({"dateTime":"Feb 08, 2010 20:25 EST",
"headline":"UPDATE 3-Canada's competition czar targets real estate fees", "article":"urn:newsml:reuters.com:20100209:nN08193018:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:25 EST",
"headline":"PRESS DIGEST - China - Feb 9", "article":"urn:newsml:reuters.com:20100209:nTOE61800Y:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:25 EST",
"headline":"Asia Fuel Oil-S.Korea WP seeks 60,000 T for March", "article":"urn:newsml:reuters.com:20100209:nTOE618010:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:24 EST",
"headline":"Muang Thai Insurance :The Resignation of Member of Audit Committee MTI.BK ", "article":"urn:newsml:reuters.com:20100209:nSET290008:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:23 EST",
"headline":"HK stocks may dip on Wall St; eyes on commodities", "article":"urn:newsml:reuters.com:20100209:nTOE61800W:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:22 EST",
"headline":"*TOP NEWS* Commodities and Energy", "article":"urn:newsml:reuters.com:20100209:nTOPCE:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:21 EST",
"headline":"JGB futures little changed, 30-year auction eyed", "article":"urn:newsml:reuters.com:20100209:nTOE61709N:4"});
headlines.push({"dateTime":"Feb 08, 2010 20:21 EST",
"headline":" MYRN.S - MYRIAD BRINGS 3x FASTER APPLICATIONS", "article":"urn:newsml:reuters.com:20100209:nLDE61800D:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:21 EST",
"headline":"Vulcan Announces Fourth Quarter Results VMC.N ", "article":"urn:newsml:reuters.com:20100209:nPnCL51433:6"});
headlines.push({"dateTime":"Feb 08, 2010 20:20 EST",
"headline":"China c.bank refrains from fund drains via repos", "article":"urn:newsml:reuters.com:20100209:nBJD003484:3"});
headlines.push({"dateTime":"Feb 08, 2010 20:20 EST",
"headline":"UPDATE 2-Toyota halts some hybrid shipments,Prius recall looms", "article":"urn:newsml:reuters.com:20100209:nSGE6170NA:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:19 EST",
"headline":"TAKE A LOOK-Vancouver 2010 Winter Olympics", "article":"urn:newsml:reuters.com:20100209:nLDE6100ZW:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:18 EST",
"headline":"JAPAN OFFERS 5.652 TRLN YEN IN TREASURY DISCOUNT BILLS", "article":"urn:newsml:reuters.com:20100209:nMOFBI5002:3"});
headlines.push({"dateTime":"Feb 08, 2010 20:18 EST",
"headline":"TEXT-Fitch affirms Taiwan's Jih Sun Group's ratings", "article":"urn:newsml:reuters.com:20100209:nWNA3545:3"});
headlines.push({"dateTime":"Feb 08, 2010 20:18 EST",
"headline":"UPDATE 4-Jackson doctor pleads not guilty in singer's death", "article":"urn:newsml:reuters.com:20100209:nN08170880:2"});
headlines.push({"dateTime":"Feb 08, 2010 20:18 EST",
"headline":"Chinese c.bank sets yuan mid-point at 6.8271", "article":"urn:newsml:reuters.com:20100209:nECB000570:3"});
headlines.push({"dateTime":"Feb 08, 2010 20:16 EST",
"headline":"Results of BOJ JGB buying in repo pact from 2/12", "article":"urn:newsml:reuters.com:20100209:nBOJJ8001A: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 + "
";
}