
/*
 * -------
 * :ATTRIBUTION NOTICE BEGINS
 *
 * The following JSMsg functions are:
 * 
 *    (C) Copyright 2002 - 2003, Creativyst, Inc.
 *               ALL RIGHTS RESERVED
 * 
 * For more information go to:
 *           http://www.Creativyst.com
 * or email:
 *           Support@Creativyst.com
 * 
 * Licensed under the Open Software License version 1.1
 *
 * END ATTRIBUTION NOTICE:
 * -------
 * These functions are free software; you can redistribute 
 * them and/or modify them under the terms of the Open 
 * Software License (OSL) version 1.1 as published by
 * the Open Source Initiative;
 * 
 * This program is distributed in the hope that it will 
 * be useful, but WITHOUT ANY WARRANTY; without even the 
 * implied warranty of MERCHANTABILITY or FITNESS FOR A 
 * PARTICULAR PURPOSE. See the Open Software License
 * version 1.1 for more details.
 * 
 * For the complete details of the Open Software License
 * please visit the Open Source Initiative website.
 *
 * 
 *
 * -------
 * These functions are part of a shared convention.
 * called JSMsg.  Please see the JSMsg document
 * for more details.
 *
 * www.creativyst.com/Doc/Std/JSMsg/JSMsg.htm
 *
 *
 * -------------------------------------------
 * Parts of this code were automatically
 * generated and may contain copyrighted
 * content from other sources as well.
 * Such content may not be used without
 * first obtaining explicit permissions
 * from its source.
 *
 *
*/

function mo_JSMsg() {

this.Title = Array([this.ShortListSize]);
this.Desc = Array([this.ShortListSize]);
this.Author = Array([this.ShortListSize]);
this.Link = Array([this.ShortListSize]);
this.Cat = Array([this.ShortListSize]);
this.DateN = Array([this.ShortListSize]);





 this.ShortListSize = 20;
 this.BeenLoaded = 0;
 this.dispNumb;

 this.Msg = function(msgPart, msgOffset)
 {
    document.write( this.Get(msgPart, msgOffset) );
 }

 this.MsgDay = function(msgPart)
 {
    document.write( this.GetDay(msgPart) );
 }

 this.MsgN = function(msgPart, msgNumber)
 {
    document.write( this.GetN(msgPart, msgNumber) );
 }


 this.Get = function(msgPart, msgOffset)
 {
    if(!msgOffset) {
        msgOffset = 0;
    }
    if(!this.BeenLoaded) {
        this.BeenLoaded = 1;
        dispNumb = 
           this.getRandInt(this.ShortListSize);
    }
    return( this.GetN(msgPart, (dispNumb + msgOffset)) );
 }

 this.GetDay = function(msgPart)
 {
    var d = new Date();
    var x = d.getDate();
    return( this.GetN(msgPart, x) );
 }


 this.GetN = function(msgPart, msgNumber)
 {
    var myTmp;

    if(!msgPart) {
        msgPart = "Body";
    }
    if(!msgNumber) {
        msgNumber = 0;
    }

    if(msgNumber >= this.ShortListSize) {
        msgNumber = msgNumber % this.ShortListSize;
    }

    if(  this.ok(msgPart,"Type") ) {
        return(this.Type[msgNumber]);
    }
    if(  this.ok(msgPart,"Title") ) {
        return(this.Title[msgNumber]);
    }
    if(  this.ok(msgPart, "Desc Description Content") ) {
        return(this.Desc[msgNumber]);
    }
    if(  this.ok(msgPart,"Body") ) {
        return(this.Body[msgNumber]);
    }
    if(  this.ok(msgPart, "Attrib Attribute Source") ) {
        return(this.Attrib[msgNumber]);
    }
    if(  this.ok(msgPart, "Author") ) {
        if(!this.Author[msgNumber]) {
            return(this.Attrib[msgNumber]);
        }
        return(this.Author[msgNumber]);
    }

    if(  this.ok(msgPart,"DayN Day2N Day") ) {
        myTmp = this.DateN[msgNumber];
        if(myTmp.length) { 
          myTmp = myTmp.substr(6,2);
          if(  this.ok(msgPart,"Day2N") ) {
            return(myTmp);
          }
          if(myTmp.charAt(0) == "0") {
            return(myTmp.substr(1,1))
          }
          return(myTmp);
        }
    }
    if(  this.ok(msgPart, "MonthN Month2N") ) {
        myTmp = this.DateN[msgNumber];
        if(myTmp.length) {
          myTmp = myTmp.substr(4,2)
          if(  this.ok(msgPart,"Month2N") ) {
            return(myTmp);
          }
          if(myTmp.charAt(0) == "0") {
            return(myTmp.substr(1,1))
          }
          return(myTmp);
        }
    }
    if(  this.ok(msgPart, "Year2N Year4N YearN Year") ) {
        if(this.DateN[msgNumber].length) {
          if(  this.ok(msgPart,"Year4N") ) {
            return(this.DateN[msgNumber].substr(0,4));
          }
          return(this.DateN[msgNumber].substr(0,4));
        }
    }

    if(  this.ok(msgPart,"Link") ) {
        return(this.Link[msgNumber]);
    }
    if( this.ok(msgPart,"LinkTitle") ) {
        if(this.MetaMsg(msgPart,"Link") && this.MetaMsg(msgPart,"Title") ) {
          if( !this.Link[msgNumber] ) {
              return(this.Title[msgNumber]);
          }

          if( !this.Title[msgNumber] ) {
            this.Title[msgNumber] =  this.Link[msgNumber];              
          }
          myTmp = '<A TARGET="_blank" \n'; 
          myTmp = myTmp + 'HREF="' + this.Link[msgNumber] + '">\n';
          myTmp = myTmp + this.Title[msgNumber] + '</A>\n';

          return(myTmp);

        }
        if( this.MetaMsg(msgPart,"Title") ) {
          return(this.Title[msgNumber]);
        }
        if( this.MetaMsg(msgPart,"Link") ) {
          if( this.Link[msgNumber] ) {
            myTmp = "<A TARGET=\"_blank\" \n"; 
            myTmp = myTmp + "HREF=\"" + this.Link[msgNumber] + "\">\n";
            myTmp = myTmp + this.Link[msgNumber] + "</A>\n";
            return(myTmp);
          }
        }
        return("");
    }
    if( this.ok(msgPart,"Cat Category Subject") ) {
        return(this.Cat[msgNumber]);
    }
    if( this.ok(msgPart,"Thumb") ) {
        return(this.Thumb[msgNumber]);
    }
    if( this.ok(msgPart,"Alt") ) {
        return(this.Alt[msgNumber]);
    }

    return("");
 }




 this.getRandInt = function(RandSz)
 {
    var t, t2, t3;

    t = 0;
    while(t < .000001) {
        t = Math.random();
        t = Math.abs(t);
    }
    t2 = t * 1000000;
    t2 = Math.round(t2);
    t3 = t2 % RandSz;
    return(t3);
 }



 this.ok = function(a, b)
 {
    var t, t2;

    if(!this.is(a,b)) {
        return(0);
    }
    return(this.MetaMsg(a));
 }

 this.is = function(a, b)
 {
    var t, t2;

    t = a + " ";
    t2 = b + " ";
    t2 = t2.toUpperCase();
    t = t.toUpperCase();

    if(t2.indexOf(t) == -1) {
        return(0);
    }
    return(1);
 }


 this.MetaMsg = function(msgCmd)
 {
    if( this.is(msgCmd, "Title LinkTitle Desc Description Author Link LinkTitle Cat Category SubjectDayN Day2N MonthN Month2N Year2N Year4N YearN Year ") ) {
         return(1);

    }
    else if( this.is(msgCmd, "MetaCount") ) {
        return(20);
    }
    else {
        return(0);
    }
 }


     

}

mo = new mo_JSMsg();

/* how slow is the with statement */

with( mo ) {
Title[0] = "Malcolm Gladwell, Eclectic Detective";
Desc[0] = "The themes of this collection are a good way to characterize the author himself: a minor genius who unwittingly demonstrates the hazards of statistical reasoning.";
Author[0] = "By STEVEN PINKER";
Link[0] = "http://www.nytimes.com/2009/11/15/books/review/Pinker-t.html?partner=rss&amp;emc=rss";
Cat[0] = "<item>\n      <title>Malcolm Gladwell, Eclectic Detective</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Pinker-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Pinker-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Pinker-t_CA1/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description>Malcolm Gladwell</media:description>\n      <media:credit>Todd Heisler/The New York Times</media:credit>\n      <description>The themes of this collection are a good way to characterize the author himself: a minor genius who unwittingly demonstrates the hazards of statistical reasoning.</description>\n      <dc:creator>By STEVEN PINKER</dc:creator>\n      <pubDate>Thu, 19 Nov 2009 20:51:32 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Gladwell, Malcolm</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">What the Dog Saw: And Other Adventures (Book)</category>\n    ";
DateN[0] = "20091119";

Title[1] = "Nabokov&#x2019;s Last Puzzle";
Desc[1] = "The unfinished &#x201C;Original of Laura&#x201D; comes ready for devotees to read and remix.";
Author[1] = "By DAVID GATES";
Link[1] = "http://www.nytimes.com/2009/11/15/books/review/Gates-t.html?partner=rss&amp;emc=rss";
Cat[1] = "\n    <item>\n      <title>Nabokov&#x2019;s Last Puzzle</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Gates-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Gates-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Gates-t_CA0/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description>Vladimir Nabokov</media:description>\n      <media:credit>Carl Mydans/Time &amp; Life Pictures &#x2014; Getty Images (1958)</media:credit>\n      <description>The unfinished &#x201C;Original of Laura&#x201D; comes ready for devotees to read and remix.</description>\n      <dc:creator>By DAVID GATES</dc:creator>\n      <pubDate>Mon, 16 Nov 2009 16:48:49 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Nabokov, Vladimir</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Original of Laura, The (Book)</category>\n    ";
DateN[1] = "20091116";

Title[2] = "The Morning After";
Desc[2] = "Mary Karr&#x2019;s third memoir layers the pangs of recovery with those of motherhood, divorce and making art.";
Author[2] = "By SUSAN CHEEVER";
Link[2] = "http://www.nytimes.com/2009/11/15/books/review/Cheever-t.html?partner=rss&amp;emc=rss";
Cat[2] = "\n    <item>\n      <title>The Morning After</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Cheever-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Cheever-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Cheever-t_CA0/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description>Mary Karr</media:description>\n      <media:credit>Marion Ettlinger</media:credit>\n      <description>Mary Karr&#x2019;s third memoir layers the pangs of recovery with those of motherhood, divorce and making art.</description>\n      <dc:creator>By SUSAN CHEEVER</dc:creator>\n      <pubDate>Sat, 14 Nov 2009 15:10:29 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Karr, Mary</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Lit: A Memoir (Book)</category>\n    ";
DateN[2] = "20091114";

Title[3] = "Performance Anxiety";
Desc[3] = "Philip Roth&#x2019;s novel stars an aging actor who can no longer act.";
Author[3] = "By KATHRYN HARRISON";
Link[3] = "http://www.nytimes.com/2009/11/15/books/review/Harrison-t.html?partner=rss&amp;emc=rss";
Cat[3] = "\n    <item>\n      <title>Performance Anxiety</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Harrison-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Harrison-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Harrison-t_CA0/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description/>\n      <media:credit>Illustration by Rodrigo Corral</media:credit>\n      <description>Philip Roth&#x2019;s novel stars an aging actor who can no longer act.</description>\n      <dc:creator>By KATHRYN HARRISON</dc:creator>\n      <pubDate>Mon, 16 Nov 2009 16:46:08 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Roth, Philip</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Humbling, The (Book)</category>\n    ";
DateN[3] = "20091116";

Title[4] = "The Cheating Game";
Desc[4] = "James McManus explores the characteristically American history of poker.";
Author[4] = "By ROBERT PINSKY";
Link[4] = "http://www.nytimes.com/2009/11/15/books/review/Pinsky-t.html?partner=rss&amp;emc=rss";
Cat[4] = "\n    <item>\n      <title>The Cheating Game</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Pinsky-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Pinsky-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/pinsky-ready/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description/>\n      <media:credit>Illustration by Thomas Fuchs</media:credit>\n      <description>James McManus explores the characteristically American history of poker.</description>\n      <dc:creator>By ROBERT PINSKY</dc:creator>\n      <pubDate>Fri, 13 Nov 2009 17:39:54 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/mdes\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">McManus, James</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Cowboys Full: The Story of Poker (Book)</category>\n    ";
DateN[4] = "20091113";

Title[5] = "Road Trip";
Desc[5] = "Chaucer&#x2019;s lusty pilgrims return in a Modern English incarnation.";
Author[5] = "By HAROLD BLOOM";
Link[5] = "http://www.nytimes.com/2009/11/15/books/review/Bloom-t.html?partner=rss&amp;emc=rss";
Cat[5] = "\n    <item>\n      <title>Road Trip</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Bloom-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Bloom-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Bloom-t_CA0/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description/>\n      <media:credit>Illustration by Sara Fanelli</media:credit>\n      <description>Chaucer&#x2019;s lusty pilgrims return in a Modern English incarnation.</description>\n      <dc:creator>By HAROLD BLOOM</dc:creator>\n      <pubDate>Mon, 16 Nov 2009 16:51:05 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Ackroyd, Peter</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Cantebury Tales, The: A Retelling (Book)</category>\n    ";
DateN[5] = "20091116";

Title[6] = "When Type Was Poured Hot";
Desc[6] = "In his new memoir, Harold Evans recalls an exuberant run in 20th-century journalism.";
Author[6] = "By DAVID CARR";
Link[6] = "http://www.nytimes.com/2009/11/15/books/review/Carr-t.html?partner=rss&amp;emc=rss";
Cat[6] = "\n    <item>\n      <title>When Type Was Poured Hot</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Carr-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Carr-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Carr-t_CA1/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description>Photograph from &#x201C;My Paper Chase&#x201D;</media:description>\n      <media:credit/>\n      <description>In his new memoir, Harold Evans recalls an exuberant run in 20th-century journalism.</description>\n      <dc:creator>By DAVID CARR</dc:creator>\n      <pubDate>Fri, 13 Nov 2009 18:16:45 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Evans, Harold M</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">My Paper Chase: True Stories of Vanished Times (Book)</category>\n    ";
DateN[6] = "20091113";

Title[7] = "The Lies They Told";
Desc[7] = "Reconstructing officials&#x2019; false and ineffectual responses to 9/11.";
Author[7] = "By JACOB HEILBRUNN";
Link[7] = "http://www.nytimes.com/2009/11/15/books/review/Heilbrunn-t.html?partner=rss&amp;emc=rss";
Cat[7] = "\n    <item>\n      <title>The Lies They Told</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Heilbrunn-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Heilbrunn-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Heilbrunn-t_CA0/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description/>\n      <media:credit>Justin Lane for The New York Times (2001)</media:credit>\n      <description>Reconstructing officials&#x2019; false and ineffectual responses to 9/11.</description>\n      <dc:creator>By JACOB HEILBRUNN</dc:creator>\n      <pubDate>Mon, 16 Nov 2009 16:36:16 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Farmer, John Jr</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Ground Truth, The: The Untold Story of America Under Attack on 9/11 (Book)</category>\n    ";
DateN[7] = "20091116";

Title[8] = "Rational Irrationality";
Desc[8] = "The story of 2008&#x2019;s crash, and an effort to size up the problem.";
Author[8] = "By PAUL M. BARRETT";
Link[8] = "http://www.nytimes.com/2009/11/15/books/review/Barrett-t.html?partner=rss&amp;emc=rss";
Cat[8] = "\n    <item>\n      <title>Rational Irrationality</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Barrett-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Barrett-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Barrett-t_CA0/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description/>\n      <media:credit>Illustration by Ji Lee</media:credit>\n      <description>The story of 2008&#x2019;s crash, and an effort to size up the problem.</description>\n      <dc:creator>By PAUL M. BARRETT</dc:creator>\n      <pubDate>Fri, 13 Nov 2009 17:36:09 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/mdes\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">United States Economy</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Sorkin, Andrew Ross</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Cassidy, John</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Too Big To Fail (Book)</category>\n    ";
DateN[8] = "20091113";

Title[9] = "Love Crimes";
Desc[9] = "In Paul Auster&#x2019;s latest novel, the protagonist indulges passions new and forbidden.";
Author[9] = "By CLANCY MARTIN";
Link[9] = "http://www.nytimes.com/2009/11/15/books/review/Martin-t.html?partner=rss&amp;emc=rss";
Cat[9] = "\n    <item>\n      <title>Love Crimes</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Martin-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Martin-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Martin-t_CA0/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description>Paul Auster</media:description>\n      <media:credit>Photograph by Todd Heisler/The New York Times</media:credit>\n      <description>In Paul Auster&#x2019;s latest novel, the protagonist indulges passions new and forbidden.</description>\n      <dc:creator>By CLANCY MARTIN</dc:creator>\n      <pubDate>Fri, 13 Nov 2009 15:46:05 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Auster, Paul</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Invisible (Book)</category>\n    ";
DateN[9] = "20091113";

Title[10] = "Angels and Insects";
Desc[10] = "A fictional metamorphosis conveys what it means to be alien.";
Author[10] = "By MARY GAITSKILL";
Link[10] = "http://www.nytimes.com/2009/11/15/books/review/Gaitskill-t.html?partner=rss&amp;emc=rss";
Cat[10] = "\n    <item>\n      <title>Angels and Insects</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Gaitskill-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Gaitskill-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Gaitskill-t_CA0/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description/>\n      <media:credit>Illustration by Istvan Banyai</media:credit>\n      <description>A fictional metamorphosis conveys what it means to be alien.</description>\n      <dc:creator>By MARY GAITSKILL</dc:creator>\n      <pubDate>Fri, 13 Nov 2009 17:36:38 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Hage, Rawi</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Cockroach (Book)</category>\n    ";
DateN[10] = "20091113";

Title[11] = "November Song";
Desc[11] = "In the autumnal novel of Maureen Howard&#x2019;s cycle of seasons, an 80-something narrator shares her inner Manhattan.";
Author[11] = "By JESS ROW";
Link[11] = "http://www.nytimes.com/2009/11/15/books/review/Row-t.html?partner=rss&amp;emc=rss";
Cat[11] = "\n    <item>\n      <title>November Song</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Row-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Row-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/review/Row-t_CA0/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description/>\n      <media:credit>Illustration by Andrea Ventura</media:credit>\n      <description>In the autumnal novel of Maureen Howard&#x2019;s cycle of seasons, an 80-something narrator shares her inner Manhattan.</description>\n      <dc:creator>By JESS ROW</dc:creator>\n      <pubDate>Mon, 16 Nov 2009 16:44:15 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Howard, Maureen</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Rags of Time, The (Book)</category>\n    ";
DateN[11] = "20091116";

Title[12] = "Illness and Intimacy";
Desc[12] = "The professor of psychiatry who discussed her own manic depression in &#x201C;An Unquiet Mind&#x201D; revisits her husband&#x2019;s death from cancer.";
Author[12] = "By MICHAEL GREENBERG";
Link[12] = "http://www.nytimes.com/2009/11/15/books/review/Greenberg-t.html?partner=rss&amp;emc=rss";
Cat[12] = "\n    <item>\n      <title>Illness and Intimacy</title>\n      <link>http://www.nytimes.com/2009/11/15/books/review/Greenberg-t.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/15/books/review/Greenberg-t.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/15/books/greenberg-ready/thumbStandard.jpg\" medium=\"image\" height=\"75\" width=\"75\"/>\n      <media:description>Kay Redfield Jamison</media:description>\n      <media:credit>Richard Wyatt</media:credit>\n      <description>The professor of psychiatry who discussed her own manic depression in &#x201C;An Unquiet Mind&#x201D; revisits her husband&#x2019;s death from cancer.</description>\n      <dc:creator>By MICHAEL GREENBERG</dc:creator>\n      <pubDate>Fri, 13 Nov 2009 17:40:40 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_per\">Jamison, Kay Redfield</category>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/nyt_ttl\">Nothing Was the Same: A Memoir (Book)</category>\n    ";
DateN[12] = "20091113";

Title[13] = "Hardcover Fiction";
Desc[13] = "&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. FORD COUNTY, by John Grisham&lt;br/&gt;2. THE LOST SYMBOL, by Dan Brown&lt;br/&gt;3. KINDRED IN DEATH, by J. D. Robb&lt;br/&gt;4. THE GATHERING STORM, by Robert Jordan and Brandon Sanderson&lt;br/&gt;5. THE LACUNA, by Barbara Kingsolver";
Author[13] = "\n    <item>\n      <title>Hardcover Fiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/besthardfiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/besthardfiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/ford_cap/thumb100.jpg\" medium=\"image\" height=\"150\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. FORD COUNTY, by John Grisham&lt;br/&gt;2. THE LOST SYMBOL, by Dan Brown&lt;br/&gt;3. KINDRED IN DEATH, by J. D. Robb&lt;br/&gt;4. THE GATHERING STORM, by Robert Jordan and Brandon Sanderson&lt;br/&gt;5. THE LACUNA, by Barbara Kingsolver</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 15:59:44 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
Link[13] = "http://www.nytimes.com/2009/11/22/books/bestseller/besthardfiction.html?partner=rss&amp;emc=rss";
Cat[13] = "\n    <item>\n      <title>Hardcover Fiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/besthardfiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/besthardfiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/ford_cap/thumb100.jpg\" medium=\"image\" height=\"150\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. FORD COUNTY, by John Grisham&lt;br/&gt;2. THE LOST SYMBOL, by Dan Brown&lt;br/&gt;3. KINDRED IN DEATH, by J. D. Robb&lt;br/&gt;4. THE GATHERING STORM, by Robert Jordan and Brandon Sanderson&lt;br/&gt;5. THE LACUNA, by Barbara Kingsolver</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 15:59:44 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
DateN[13] = "20091112";

Title[14] = "Hardcover Nonfiction";
Desc[14] = "&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. HAVE A LITTLE FAITH, by Mitch Albom&lt;br/&gt;2. SUPERFREAKONOMICS, by Steven D. Levitt and Stephen J. Dubner&lt;br/&gt;3. WHAT THE DOG SAW, by Malcolm Gladwell&lt;br/&gt;4. ARGUING WITH IDIOTS, written and edited by Glenn Beck, Kevin Balfe and others&lt;br/&gt;5. THE BOOK OF BASKETBALL, by Bill Simmons";
Author[14] = "\n    <item>\n      <title>Hardcover Nonfiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/besthardnonfiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/besthardnonfiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/arts/besthardcover_mitch/thumb100.jpg\" medium=\"image\" height=\"149\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. HAVE A LITTLE FAITH, by Mitch Albom&lt;br/&gt;2. SUPERFREAKONOMICS, by Steven D. Levitt and Stephen J. Dubner&lt;br/&gt;3. WHAT THE DOG SAW, by Malcolm Gladwell&lt;br/&gt;4. ARGUING WITH IDIOTS, written and edited by Glenn Beck, Kevin Balfe and others&lt;br/&gt;5. THE BOOK OF BASKETBALL, by Bill Simmons</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 15:44:38 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
Link[14] = "http://www.nytimes.com/2009/11/22/books/bestseller/besthardnonfiction.html?partner=rss&amp;emc=rss";
Cat[14] = "\n    <item>\n      <title>Hardcover Nonfiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/besthardnonfiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/besthardnonfiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/arts/besthardcover_mitch/thumb100.jpg\" medium=\"image\" height=\"149\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. HAVE A LITTLE FAITH, by Mitch Albom&lt;br/&gt;2. SUPERFREAKONOMICS, by Steven D. Levitt and Stephen J. Dubner&lt;br/&gt;3. WHAT THE DOG SAW, by Malcolm Gladwell&lt;br/&gt;4. ARGUING WITH IDIOTS, written and edited by Glenn Beck, Kevin Balfe and others&lt;br/&gt;5. THE BOOK OF BASKETBALL, by Bill Simmons</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 15:44:38 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
DateN[14] = "20091112";

Title[15] = "Paperback Trade Fiction";
Desc[15] = "&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. PUSH, by Sapphire&lt;br/&gt;2. BED OF ROSES, by Nora Roberts&lt;br/&gt;3. SAY YOU&#x2019;RE ONE OF THEM, by Uwem Akpan&lt;br/&gt;4. THE SHACK, by William P. Young&lt;br/&gt;5. THE GIRL WITH THE DRAGON TATTOO, by Stieg Larsson";
Author[15] = "\n    <item>\n      <title>Paperback Trade Fiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/bestpapertradefiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/bestpapertradefiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/push_cap/thumb100.jpg\" medium=\"image\" height=\"158\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. PUSH, by Sapphire&lt;br/&gt;2. BED OF ROSES, by Nora Roberts&lt;br/&gt;3. SAY YOU&#x2019;RE ONE OF THEM, by Uwem Akpan&lt;br/&gt;4. THE SHACK, by William P. Young&lt;br/&gt;5. THE GIRL WITH THE DRAGON TATTOO, by Stieg Larsson</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 16:08:48 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
Link[15] = "http://www.nytimes.com/2009/11/22/books/bestseller/bestpapertradefiction.html?partner=rss&amp;emc=rss";
Cat[15] = "\n    <item>\n      <title>Paperback Trade Fiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/bestpapertradefiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/bestpapertradefiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/push_cap/thumb100.jpg\" medium=\"image\" height=\"158\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. PUSH, by Sapphire&lt;br/&gt;2. BED OF ROSES, by Nora Roberts&lt;br/&gt;3. SAY YOU&#x2019;RE ONE OF THEM, by Uwem Akpan&lt;br/&gt;4. THE SHACK, by William P. Young&lt;br/&gt;5. THE GIRL WITH THE DRAGON TATTOO, by Stieg Larsson</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 16:08:48 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
DateN[15] = "20091112";

Title[16] = "Paperback Mass-Market Fiction";
Desc[16] = "&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. BORN OF FIRE, by Sherrilyn Kenyon&lt;br/&gt;2. THE ASSOCIATE, by John Grisham&lt;br/&gt;3. CROSS COUNTRY, by James Patterson&lt;br/&gt;4. YOUR HEART BELONGS TO ME, by Dean Koontz&lt;br/&gt;5. ANGELS AT CHRISTMAS, by Debbie Macomber";
Author[16] = "\n    <item>\n      <title>Paperback Mass-Market Fiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/bestpapermassfiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/bestpapermassfiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/arts/papermass_cap/thumb100.jpg\" medium=\"image\" height=\"169\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. BORN OF FIRE, by Sherrilyn Kenyon&lt;br/&gt;2. THE ASSOCIATE, by John Grisham&lt;br/&gt;3. CROSS COUNTRY, by James Patterson&lt;br/&gt;4. YOUR HEART BELONGS TO ME, by Dean Koontz&lt;br/&gt;5. ANGELS AT CHRISTMAS, by Debbie Macomber</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 15:48:33 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
Link[16] = "http://www.nytimes.com/2009/11/22/books/bestseller/bestpapermassfiction.html?partner=rss&amp;emc=rss";
Cat[16] = "\n    <item>\n      <title>Paperback Mass-Market Fiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/bestpapermassfiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/bestpapermassfiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/arts/papermass_cap/thumb100.jpg\" medium=\"image\" height=\"169\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. BORN OF FIRE, by Sherrilyn Kenyon&lt;br/&gt;2. THE ASSOCIATE, by John Grisham&lt;br/&gt;3. CROSS COUNTRY, by James Patterson&lt;br/&gt;4. YOUR HEART BELONGS TO ME, by Dean Koontz&lt;br/&gt;5. ANGELS AT CHRISTMAS, by Debbie Macomber</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 15:48:33 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
DateN[16] = "20091112";

Title[17] = "Paperback Nonfiction";
Desc[17] = "&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. THE BLIND SIDE, by Michael Lewis&lt;br/&gt;2. OUR CHOICE, by Al Gore&lt;br/&gt;3. THREE CUPS OF TEA, by Greg Mortenson and David Oliver Relin&lt;br/&gt;4. FREAKONOMICS, by Steven D. Levitt and Stephen J. Dubner&lt;br/&gt;5. THE GLASS CASTLE, by Jeannette Walls";
Author[17] = "\n    <item>\n      <title>Paperback Nonfiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/bestpapernonfiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/bestpapernonfiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/blind_cap/thumb100.jpg\" medium=\"image\" height=\"164\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. THE BLIND SIDE, by Michael Lewis&lt;br/&gt;2. OUR CHOICE, by Al Gore&lt;br/&gt;3. THREE CUPS OF TEA, by Greg Mortenson and David Oliver Relin&lt;br/&gt;4. FREAKONOMICS, by Steven D. Levitt and Stephen J. Dubner&lt;br/&gt;5. THE GLASS CASTLE, by Jeannette Walls</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 16:11:49 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
Link[17] = "http://www.nytimes.com/2009/11/22/books/bestseller/bestpapernonfiction.html?partner=rss&amp;emc=rss";
Cat[17] = "\n    <item>\n      <title>Paperback Nonfiction</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/bestpapernonfiction.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/bestpapernonfiction.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/blind_cap/thumb100.jpg\" medium=\"image\" height=\"164\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. THE BLIND SIDE, by Michael Lewis&lt;br/&gt;2. OUR CHOICE, by Al Gore&lt;br/&gt;3. THREE CUPS OF TEA, by Greg Mortenson and David Oliver Relin&lt;br/&gt;4. FREAKONOMICS, by Steven D. Levitt and Stephen J. Dubner&lt;br/&gt;5. THE GLASS CASTLE, by Jeannette Walls</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 16:11:49 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
DateN[17] = "20091112";

Title[18] = "Hardcover Advice";
Desc[18] = "&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. IT&#x2019;S YOUR TIME, by Joel Osteen&lt;br/&gt;2. THE PIONEER WOMAN COOKS, by Ree Drummond&lt;br/&gt;3. GUINNESS WORLD RECORDS 2010, edited by Craig Glenday&lt;br/&gt;4. KNOCKOUT, by Suzanne Somers&lt;br/&gt;5. REINVENTING THE BODY, RESURRECTING THE SOUL, by Deepak Chopra";
Author[18] = "\n    <item>\n      <title>Hardcover Advice</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/besthardadvice.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/besthardadvice.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/yourtime_ca/thumb100.jpg\" medium=\"image\" height=\"156\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. IT&#x2019;S YOUR TIME, by Joel Osteen&lt;br/&gt;2. THE PIONEER WOMAN COOKS, by Ree Drummond&lt;br/&gt;3. GUINNESS WORLD RECORDS 2010, edited by Craig Glenday&lt;br/&gt;4. KNOCKOUT, by Suzanne Somers&lt;br/&gt;5. REINVENTING THE BODY, RESURRECTING THE SOUL, by Deepak Chopra</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 15:54:49 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
Link[18] = "http://www.nytimes.com/2009/11/22/books/bestseller/besthardadvice.html?partner=rss&amp;emc=rss";
Cat[18] = "\n    <item>\n      <title>Hardcover Advice</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/besthardadvice.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/besthardadvice.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/yourtime_ca/thumb100.jpg\" medium=\"image\" height=\"156\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. IT&#x2019;S YOUR TIME, by Joel Osteen&lt;br/&gt;2. THE PIONEER WOMAN COOKS, by Ree Drummond&lt;br/&gt;3. GUINNESS WORLD RECORDS 2010, edited by Craig Glenday&lt;br/&gt;4. KNOCKOUT, by Suzanne Somers&lt;br/&gt;5. REINVENTING THE BODY, RESURRECTING THE SOUL, by Deepak Chopra</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 15:54:49 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
DateN[18] = "20091112";

Title[19] = "Paperback Advice";
Desc[19] = "&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. WHAT TO EXPECT WHEN YOU&#x2019;RE EXPECTING, by Heidi Murkoff and Sharon Mazel&lt;br/&gt;2. NEW MOON, by Mark Cotta Vaz&lt;br/&gt;3. MORE DINERS, DRIVE-INS AND DIVES, by Guy Fieri with Ann Volkwein&lt;br/&gt;4. THE FIVE LOVE LANGUAGES, by Gary Chapman&lt;br/&gt;5. BUY KETCHUP IN MAY AND FLY AT NOON, by Mark Di Vincenzo";
Author[19] = "\n    <item>\n      <title>Paperback Advice</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/bestpaperadvice.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/bestpaperadvice.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/what_cap/thumb100.jpg\" medium=\"image\" height=\"164\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. WHAT TO EXPECT WHEN YOU&#x2019;RE EXPECTING, by Heidi Murkoff and Sharon Mazel&lt;br/&gt;2. NEW MOON, by Mark Cotta Vaz&lt;br/&gt;3. MORE DINERS, DRIVE-INS AND DIVES, by Guy Fieri with Ann Volkwein&lt;br/&gt;4. THE FIVE LOVE LANGUAGES, by Gary Chapman&lt;br/&gt;5. BUY KETCHUP IN MAY AND FLY AT NOON, by Mark Di Vincenzo</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 16:14:56 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
Link[19] = "http://www.nytimes.com/2009/11/22/books/bestseller/bestpaperadvice.html?partner=rss&amp;emc=rss";
Cat[19] = "\n    <item>\n      <title>Paperback Advice</title>\n      <link>http://www.nytimes.com/2009/11/22/books/bestseller/bestpaperadvice.html?partner=rss&amp;emc=rss</link>\n      <guid isPermaLink=\"true\">http://www.nytimes.com/2009/11/22/books/bestseller/bestpaperadvice.html</guid>\n      <media:content url=\"http://graphics8.nytimes.com/images/2009/11/12/books/what_cap/thumb100.jpg\" medium=\"image\" height=\"164\" width=\"100\"/>\n      <media:description/>\n      <media:credit/>\n      <description>&lt;b style=\"font-size:.9em\"&gt;Top 5 at a Glance&lt;/b&gt;&lt;br/&gt;1. WHAT TO EXPECT WHEN YOU&#x2019;RE EXPECTING, by Heidi Murkoff and Sharon Mazel&lt;br/&gt;2. NEW MOON, by Mark Cotta Vaz&lt;br/&gt;3. MORE DINERS, DRIVE-INS AND DIVES, by Guy Fieri with Ann Volkwein&lt;br/&gt;4. THE FIVE LOVE LANGUAGES, by Gary Chapman&lt;br/&gt;5. BUY KETCHUP IN MAY AND FLY AT NOON, by Mark Di Vincenzo</description>\n      <dc:creator/>\n      <pubDate>Thu, 12 Nov 2009 16:14:56 GMT</pubDate>\n      <category domain=\"http://www.nytimes.com/namespaces/keywords/des\">Books and Literature</category>\n    ";
DateN[19] = "20091112";

} // end with block
