
/*
 * -------
 * :ATTRIBUTION NOTICE BEGINS
 *
 * The following JSMsg functions are:
 * 
 *    (C) Copyright 2002 - 2004, Creativyst, Inc.
 *               ALL RIGHTS RESERVED
 * 
 * For more information go to:
 *   http://www.Creativyst.com/Doc/Std/JSMsg/JSMsg.htm
 * or email:
 *            Support@Creativyst.com
 * 
 * Licensed under the Open Software License version 1.1
 *
 * END ATTRIBUTION NOTICE:
 * -------
 *
 * The following version token is 
 * required by aggregators
 * -------
 * JSMsgVersion:1.0a
 * -------
 *
 * Made by: JSMFeed.pl v1.0e
*/
/* JSCpragma:StartCompress
*/
/* 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 their sources.
 *
 *
*/

function nn_JSMsg() {

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

this.MetaKeys = Array([5]);
this.MetaVals = Array([5]);



 this.ShortListSize = 15;
 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.GetMsgN = function()
 {
	return(this.ShortListSize);
 }

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


 this.GetN = function(msgPart, msgNumber)
 {
    return( this.GetNCore(msgPart, msgNumber) );
 }

 this.GetNCore = 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,"Year2N") ) {
            return(this.DateN[msgNumber].substr(2,2));
          }
          return(this.DateN[msgNumber].substr(0,4));
        }
    }

    if(  this.ok(msgPart,"Time") ) {
      myTmp = this.DateN[msgNumber];
      return(myTmp.substr(8,6));
    }
    if(  this.ok(msgPart,"Hour2N") ) {
      myTmp = this.DateN[msgNumber];
      return(myTmp.substr(8,2));
    }
    if(  this.ok(msgPart,"Minute2N") ) {
      myTmp = this.DateN[msgNumber];
      return(myTmp.substr(10,2));
    }

    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)
 {
    var i,l;

    if( this.is(msgCmd, "Title LinkTitle Desc Description Attrib Source Link LinkTitle DayN Day2N MonthN Month2N Year2N Year4N YearN Year Time Hour2N Minute2N ") ) {
         return(1);

    }
    else if( this.is(msgCmd, "MetaCount") ) {
        return(15);
    }
    else {
        if(this.MetaKeys) {
            l = this.MetaKeys.length;
            for(i = 0;i < l;i++) {
                if(this.MetaKeys[i] == msgCmd) {
                    return(this.MetaVals[i]);
                }
            }
        }
        return(0);
    }
 }

     

}

nn = new nn_JSMsg();

/* how slow is the with statement */

with( nn ) {
/* Meta values
*/
MetaKeys[0] = "MetaCopyright";
MetaVals[0] = "Copyright 2010 Dow Jones &amp; Company, Inc.  All Rights Reserved.";
MetaKeys[1] = "MetaTitle";
MetaVals[1] = "SmartMoney.com";
MetaKeys[2] = "MetaLink";
MetaVals[2] = "http://www.smartmoney.com/";
MetaKeys[3] = "MetaLinkTitle";
MetaVals[3] = "<A HREF=\"http://www.smartmoney.com/\" CLASS=\"JSMsg\">SmartMoney.com</A>";
MetaKeys[4] = "MetaDesc";
MetaVals[4] = "Investing, Saving and Personal Finance";


/* content vaues:
*/
Title[0] = "Stocks Snap 3-Week Skid (Market Update)";
Desc[0] = "Investors sailed into the long weekend on a high note as a better-than-expected...\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/lx7sQTpGZkxOkpPzRcTDCuppzUE/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/lx7sQTpGZkxOkpPzRcTDCuppzUE/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/lx7sQTpGZkxOkpPzRcTDCuppzUE/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/lx7sQTpGZkxOkpPzRcTDCuppzUE/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=9kVW9Rroft4:EIAqGkXX3tI:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/9kVW9Rroft4\" height=\"1\" width=\"1\"/&gt;";
Attrib[0] = "<item>\n\n			<title>Stocks Snap 3-Week Skid (Market Update)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/9kVW9Rroft4/</link>\n\n			<pubDate>Fri, 03 Sep 2010 18:57:01 -0400</pubDate>\n\n			<description>Investors sailed into the long weekend on a high note as a better-than-expected...\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/lx7sQTpGZkxOkpPzRcTDCuppzUE/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/lx7sQTpGZkxOkpPzRcTDCuppzUE/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/lx7sQTpGZkxOkpPzRcTDCuppzUE/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/lx7sQTpGZkxOkpPzRcTDCuppzUE/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=9kVW9Rroft4:EIAqGkXX3tI:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/9kVW9Rroft4\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/stocks/market-update-friday-sep-3-2010-25047/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/stocks/market-update-friday-sep-3-2010-25047/?cid=1122</feedburner:origLink>";
Link[0] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/9kVW9Rroft4/";
DateN[0] = "20100903185701";

Title[1] = "The Stock Market Slide Is Over (Ahead of the Curve)";
Desc[1] = "Luskin: Stocks are underpriced, and the economy is getting better.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/u5MrjuMTrQ-K-b87rGRACbj0BwQ/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/u5MrjuMTrQ-K-b87rGRACbj0BwQ/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/u5MrjuMTrQ-K-b87rGRACbj0BwQ/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/u5MrjuMTrQ-K-b87rGRACbj0BwQ/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=cX1EZHtmQ1E:gSHdpTsIxTw:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/cX1EZHtmQ1E\" height=\"1\" width=\"1\"/&gt;";
Attrib[1] = "\n\n		\n\n		<item>\n\n			<title>The Stock Market Slide Is Over (Ahead of the Curve)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/cX1EZHtmQ1E/</link>\n\n			<pubDate>Fri, 03 Sep 2010 14:14:08 -0400</pubDate>\n\n			<description>Luskin: Stocks are underpriced, and the economy is getting better.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/u5MrjuMTrQ-K-b87rGRACbj0BwQ/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/u5MrjuMTrQ-K-b87rGRACbj0BwQ/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/u5MrjuMTrQ-K-b87rGRACbj0BwQ/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/u5MrjuMTrQ-K-b87rGRACbj0BwQ/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=cX1EZHtmQ1E:gSHdpTsIxTw:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/cX1EZHtmQ1E\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Donald Luskin)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/stocks/the-stock-market-slide-is-over/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/stocks/the-stock-market-slide-is-over/?cid=1122</feedburner:origLink>";
Link[1] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/cX1EZHtmQ1E/";
DateN[1] = "20100903141408";

Title[2] = "BMW Revs Up a New 5 Series (Driving Force)";
Desc[2] = "BMW\'s frisky new 5 actually got cheaper this year -- not counting the options.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/4xU0smqO74qUkc5g7xhDyGYIZMA/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/4xU0smqO74qUkc5g7xhDyGYIZMA/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/4xU0smqO74qUkc5g7xhDyGYIZMA/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/4xU0smqO74qUkc5g7xhDyGYIZMA/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=UUYrDm_09I4:jMZLcuGCu8Y:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/UUYrDm_09I4\" height=\"1\" width=\"1\"/&gt;";
Attrib[2] = "\n\n		\n\n		<item>\n\n			<title>BMW Revs Up a New 5 Series (Driving Force)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/UUYrDm_09I4/</link>\n\n			<pubDate>Fri, 03 Sep 2010 13:31:43 -0400</pubDate>\n\n			<description>BMW\'s frisky new 5 actually got cheaper this year -- not counting the options.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/4xU0smqO74qUkc5g7xhDyGYIZMA/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/4xU0smqO74qUkc5g7xhDyGYIZMA/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/4xU0smqO74qUkc5g7xhDyGYIZMA/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/4xU0smqO74qUkc5g7xhDyGYIZMA/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=UUYrDm_09I4:jMZLcuGCu8Y:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/UUYrDm_09I4\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Paul Ingrassia)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/spending/autos/bmw-revs-up-a-new-5-series/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/spending/autos/bmw-revs-up-a-new-5-series/?cid=1122</feedburner:origLink>";
Link[2] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/UUYrDm_09I4/";
DateN[2] = "20100903133143";

Title[3] = "How to Call Bluffs in Poker... and Investing (By the Numbers)";
Desc[3] = "Hough: A pair of new studies suggests when to bet big or walk away.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/NRF-7IwDfBEP_dl0QqoNtg27VVc/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/NRF-7IwDfBEP_dl0QqoNtg27VVc/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/NRF-7IwDfBEP_dl0QqoNtg27VVc/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/NRF-7IwDfBEP_dl0QqoNtg27VVc/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=Nlgx6W5IrUY:JTSmZiOUdCY:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/Nlgx6W5IrUY\" height=\"1\" width=\"1\"/&gt;";
Attrib[3] = "\n\n		\n\n		<item>\n\n			<title>How to Call Bluffs in Poker... and Investing (By the Numbers)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/Nlgx6W5IrUY/</link>\n\n			<pubDate>Fri, 03 Sep 2010 11:39:11 -0400</pubDate>\n\n			<description>Hough: A pair of new studies suggests when to bet big or walk away.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/NRF-7IwDfBEP_dl0QqoNtg27VVc/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/NRF-7IwDfBEP_dl0QqoNtg27VVc/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/NRF-7IwDfBEP_dl0QqoNtg27VVc/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/NRF-7IwDfBEP_dl0QqoNtg27VVc/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=Nlgx6W5IrUY:JTSmZiOUdCY:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/Nlgx6W5IrUY\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Jack Hough)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/stocks/calling-bluffs-in-poker-and-investing/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/stocks/calling-bluffs-in-poker-and-investing/?cid=1122</feedburner:origLink>";
Link[3] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/Nlgx6W5IrUY/";
DateN[3] = "20100903113911";

Title[4] = "The Unemployment Line Stretches Longer (Early Bird)";
Desc[4] = "The jobless rate in August increased to 9.6% from 9.5%.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/sUOHybacCoMDqz6RurZDBP3Q4ig/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/sUOHybacCoMDqz6RurZDBP3Q4ig/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/sUOHybacCoMDqz6RurZDBP3Q4ig/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/sUOHybacCoMDqz6RurZDBP3Q4ig/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=UBj5fQNV0gw:9amqXC-zWC4:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/UBj5fQNV0gw\" height=\"1\" width=\"1\"/&gt;";
Attrib[4] = "\n\n		\n\n		<item>\n\n			<title>The Unemployment Line Stretches Longer (Early Bird)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/UBj5fQNV0gw/</link>\n\n			<pubDate>Fri, 03 Sep 2010 11:22:53 -0400</pubDate>\n\n			<description>The jobless rate in August increased to 9.6% from 9.5%.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/sUOHybacCoMDqz6RurZDBP3Q4ig/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/sUOHybacCoMDqz6RurZDBP3Q4ig/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/sUOHybacCoMDqz6RurZDBP3Q4ig/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/sUOHybacCoMDqz6RurZDBP3Q4ig/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=UBj5fQNV0gw:9amqXC-zWC4:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/UBj5fQNV0gw\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (AnnaMaria Andriotis)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/stocks/the-unemployment-line-stretches-longer/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/stocks/the-unemployment-line-stretches-longer/?cid=1122</feedburner:origLink>";
Link[4] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/UBj5fQNV0gw/";
DateN[4] = "20100903112253";

Title[5] = "Will the Stock Market Rally This Fall?";
Desc[5] = "The recently range-bound market has the capacity to surge.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/rhRyD1T9WFjaUnO4Si7HGuc9Wt4/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/rhRyD1T9WFjaUnO4Si7HGuc9Wt4/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/rhRyD1T9WFjaUnO4Si7HGuc9Wt4/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/rhRyD1T9WFjaUnO4Si7HGuc9Wt4/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=wPf-C3yNrhE:md0LBsocN4I:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/wPf-C3yNrhE\" height=\"1\" width=\"1\"/&gt;";
Attrib[5] = "\n\n		\n\n		<item>\n\n			<title>Will the Stock Market Rally This Fall?</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/wPf-C3yNrhE/</link>\n\n			<pubDate>Fri, 03 Sep 2010 05:01:02 -0400</pubDate>\n\n			<description>The recently range-bound market has the capacity to surge.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/rhRyD1T9WFjaUnO4Si7HGuc9Wt4/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/rhRyD1T9WFjaUnO4Si7HGuc9Wt4/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/rhRyD1T9WFjaUnO4Si7HGuc9Wt4/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/rhRyD1T9WFjaUnO4Si7HGuc9Wt4/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=wPf-C3yNrhE:md0LBsocN4I:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/wPf-C3yNrhE\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Kopin Tan)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/stocks/will-the-stock-market-rally-this-fall/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/stocks/will-the-stock-market-rally-this-fall/?cid=1122</feedburner:origLink>";
Link[5] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/wPf-C3yNrhE/";
DateN[5] = "20100903050102";

Title[6] = "Business Tweets: In the Spotlight (Twitter Beat)";
Desc[6] = "Reacting to Apple\'s TV announcement, eyeing Wall Street bonuses and more.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/t9hc_4Auj-qZ_HHIOLzsv3fuNpE/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/t9hc_4Auj-qZ_HHIOLzsv3fuNpE/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/t9hc_4Auj-qZ_HHIOLzsv3fuNpE/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/t9hc_4Auj-qZ_HHIOLzsv3fuNpE/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=SpyLahKElRE:k_hKPiwX1Qc:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/SpyLahKElRE\" height=\"1\" width=\"1\"/&gt;";
Attrib[6] = "\n\n		\n\n		<item>\n\n			<title>Business Tweets: In the Spotlight (Twitter Beat)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/SpyLahKElRE/</link>\n\n			<pubDate>Fri, 03 Sep 2010 00:32:35 -0400</pubDate>\n\n			<description>Reacting to Apple\'s TV announcement, eyeing Wall Street bonuses and more.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/t9hc_4Auj-qZ_HHIOLzsv3fuNpE/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/t9hc_4Auj-qZ_HHIOLzsv3fuNpE/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/t9hc_4Auj-qZ_HHIOLzsv3fuNpE/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/t9hc_4Auj-qZ_HHIOLzsv3fuNpE/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=SpyLahKElRE:k_hKPiwX1Qc:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/SpyLahKElRE\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Sarah Morgan)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/economy/business-tweets-in-the-spotlight/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/economy/business-tweets-in-the-spotlight/?cid=1122</feedburner:origLink>";
Link[6] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/SpyLahKElRE/";
DateN[6] = "20100903003235";

Title[7] = "How to Survive Hurricane Earl ";
Desc[7] = "Here are 10 steps to prepare your home and valuables for the storm.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/zHW0iEwwAot9yLbAJ1VzkRQVU-4/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/zHW0iEwwAot9yLbAJ1VzkRQVU-4/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/zHW0iEwwAot9yLbAJ1VzkRQVU-4/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/zHW0iEwwAot9yLbAJ1VzkRQVU-4/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=KsF322oOsII:tTCdPwh2Tjs:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/KsF322oOsII\" height=\"1\" width=\"1\"/&gt;";
Attrib[7] = "\n\n		\n\n		<item>\n\n			<title>How to Survive Hurricane Earl </title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/KsF322oOsII/</link>\n\n			<pubDate>Fri, 03 Sep 2010 13:33:14 -0400</pubDate>\n\n			<description>Here are 10 steps to prepare your home and valuables for the storm.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/zHW0iEwwAot9yLbAJ1VzkRQVU-4/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/zHW0iEwwAot9yLbAJ1VzkRQVU-4/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/zHW0iEwwAot9yLbAJ1VzkRQVU-4/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/zHW0iEwwAot9yLbAJ1VzkRQVU-4/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=KsF322oOsII:tTCdPwh2Tjs:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/KsF322oOsII\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (AnnaMaria Andriotis,Catey Hill)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/personal-finance/insurance/how-to-survive-hurricane-earl/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/personal-finance/insurance/how-to-survive-hurricane-earl/?cid=1122</feedburner:origLink>";
Link[7] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/KsF322oOsII/";
DateN[7] = "20100903133314";

Title[8] = "Should Defense Firms Brace for Next Chapter? (Broker Talk)";
Desc[8] = "Two market watchers weigh in on the post-Iraq outlook.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/aMmuF0gqNLAEm5N_GDIxxgqKCyw/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/aMmuF0gqNLAEm5N_GDIxxgqKCyw/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/aMmuF0gqNLAEm5N_GDIxxgqKCyw/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/aMmuF0gqNLAEm5N_GDIxxgqKCyw/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=D_vBzFGE9c4:-JruNvgY2Z8:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/D_vBzFGE9c4\" height=\"1\" width=\"1\"/&gt;";
Attrib[8] = "\n\n		\n\n		<item>\n\n			<title>Should Defense Firms Brace for Next Chapter? (Broker Talk)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/D_vBzFGE9c4/</link>\n\n			<pubDate>Fri, 03 Sep 2010 07:20:31 -0400</pubDate>\n\n			<description>Two market watchers weigh in on the post-Iraq outlook.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/aMmuF0gqNLAEm5N_GDIxxgqKCyw/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/aMmuF0gqNLAEm5N_GDIxxgqKCyw/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/aMmuF0gqNLAEm5N_GDIxxgqKCyw/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/aMmuF0gqNLAEm5N_GDIxxgqKCyw/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=D_vBzFGE9c4:-JruNvgY2Z8:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/D_vBzFGE9c4\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Elizabeth Trotta)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/stocks/should-defense-firms-brace-for-next-chapter/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/stocks/should-defense-firms-brace-for-next-chapter/?cid=1122</feedburner:origLink>";
Link[8] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/D_vBzFGE9c4/";
DateN[8] = "20100903072031";

Title[9] = "How to Find a Job in Retirement";
Desc[9] = "An increasing number of Boomers and seniors are looking for work.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/4TKpFzrzg7T0jfEU_EDlmY7N888/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/4TKpFzrzg7T0jfEU_EDlmY7N888/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/4TKpFzrzg7T0jfEU_EDlmY7N888/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/4TKpFzrzg7T0jfEU_EDlmY7N888/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=XWBrY1284RM:xR6OvV0FGn4:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/XWBrY1284RM\" height=\"1\" width=\"1\"/&gt;";
Attrib[9] = "\n\n		\n\n		<item>\n\n			<title>How to Find a Job in Retirement</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/XWBrY1284RM/</link>\n\n			<pubDate>Fri, 03 Sep 2010 06:43:35 -0400</pubDate>\n\n			<description>An increasing number of Boomers and seniors are looking for work.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/4TKpFzrzg7T0jfEU_EDlmY7N888/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/4TKpFzrzg7T0jfEU_EDlmY7N888/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/4TKpFzrzg7T0jfEU_EDlmY7N888/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/4TKpFzrzg7T0jfEU_EDlmY7N888/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=XWBrY1284RM:xR6OvV0FGn4:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/XWBrY1284RM\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Catey Hill)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/personal-finance/retirement/how-to-find-a-job-in-retirement/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/personal-finance/retirement/how-to-find-a-job-in-retirement/?cid=1122</feedburner:origLink>";
Link[9] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/XWBrY1284RM/";
DateN[9] = "20100903064335";

Title[10] = "India Calls for Web Data From Google, Skype (Early Bird)";
Desc[10] = "Like RIM before them, the firms face a new mandate.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/2f37rhcNjNROx5s0FEHXfTLi340/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/2f37rhcNjNROx5s0FEHXfTLi340/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/2f37rhcNjNROx5s0FEHXfTLi340/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/2f37rhcNjNROx5s0FEHXfTLi340/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=WcjHtMvxTKw:ucqNSVI_BtA:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/WcjHtMvxTKw\" height=\"1\" width=\"1\"/&gt;";
Attrib[10] = "\n\n		\n\n		<item>\n\n			<title>India Calls for Web Data From Google, Skype (Early Bird)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/WcjHtMvxTKw/</link>\n\n			<pubDate>Thu, 02 Sep 2010 09:55:21 -0400</pubDate>\n\n			<description>Like RIM before them, the firms face a new mandate.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/2f37rhcNjNROx5s0FEHXfTLi340/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/2f37rhcNjNROx5s0FEHXfTLi340/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/2f37rhcNjNROx5s0FEHXfTLi340/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/2f37rhcNjNROx5s0FEHXfTLi340/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=WcjHtMvxTKw:ucqNSVI_BtA:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/WcjHtMvxTKw\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (AnnaMaria Andriotis)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/stocks/india-demands-web-data-from-google-skype/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/stocks/india-demands-web-data-from-google-skype/?cid=1122</feedburner:origLink>";
Link[10] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/WcjHtMvxTKw/";
DateN[10] = "20100902095521";

Title[11] = "3 Stocks With Customer Satisfaction Appeal (Screens)";
Desc[11] = "Hough: Studies show firms that satisfy clients take care of shareholders, too.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/OlU5VGUPzPYYAmsozSsqD8Yjf1g/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/OlU5VGUPzPYYAmsozSsqD8Yjf1g/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/OlU5VGUPzPYYAmsozSsqD8Yjf1g/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/OlU5VGUPzPYYAmsozSsqD8Yjf1g/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=uiQn4CjF3ok:nAXUwJ1BD1U:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/uiQn4CjF3ok\" height=\"1\" width=\"1\"/&gt;";
Attrib[11] = "\n\n		\n\n		<item>\n\n			<title>3 Stocks With Customer Satisfaction Appeal (Screens)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/uiQn4CjF3ok/</link>\n\n			<pubDate>Thu, 02 Sep 2010 05:01:51 -0400</pubDate>\n\n			<description>Hough: Studies show firms that satisfy clients take care of shareholders, too.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/OlU5VGUPzPYYAmsozSsqD8Yjf1g/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/OlU5VGUPzPYYAmsozSsqD8Yjf1g/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/OlU5VGUPzPYYAmsozSsqD8Yjf1g/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/OlU5VGUPzPYYAmsozSsqD8Yjf1g/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=uiQn4CjF3ok:nAXUwJ1BD1U:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/uiQn4CjF3ok\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Jack Hough)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/stocks/3-stocks-with-customer-satisfaction-appeal/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/stocks/3-stocks-with-customer-satisfaction-appeal/?cid=1122</feedburner:origLink>";
Link[11] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/uiQn4CjF3ok/";
DateN[11] = "20100902050151";

Title[12] = "Co-Op Maintenance Fees Are Rising ";
Desc[12] = "Budget-strapped boards are charging more for building services.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/zXl0BeodOwj1GbnDt3PdLBsZASQ/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/zXl0BeodOwj1GbnDt3PdLBsZASQ/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/zXl0BeodOwj1GbnDt3PdLBsZASQ/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/zXl0BeodOwj1GbnDt3PdLBsZASQ/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=nLvxBGy4TQ8:tkS9GZmc1gk:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/nLvxBGy4TQ8\" height=\"1\" width=\"1\"/&gt;";
Attrib[12] = "\n\n		\n\n		<item>\n\n			<title>Co-Op Maintenance Fees Are Rising </title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/nLvxBGy4TQ8/</link>\n\n			<pubDate>Thu, 02 Sep 2010 05:01:46 -0400</pubDate>\n\n			<description>Budget-strapped boards are charging more for building services.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/zXl0BeodOwj1GbnDt3PdLBsZASQ/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/zXl0BeodOwj1GbnDt3PdLBsZASQ/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/zXl0BeodOwj1GbnDt3PdLBsZASQ/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/zXl0BeodOwj1GbnDt3PdLBsZASQ/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=nLvxBGy4TQ8:tkS9GZmc1gk:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/nLvxBGy4TQ8\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (AnnaMaria Andriotis)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/personal-finance/real-estate/co-op-maintenance-fees-are-rising/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/personal-finance/real-estate/co-op-maintenance-fees-are-rising/?cid=1122</feedburner:origLink>";
Link[12] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/nLvxBGy4TQ8/";
DateN[12] = "20100902050146";

Title[13] = "10 Things Graduate Schools Won\'t Tell You (10 Things)";
Desc[13] = "The big question: Will an advanced degree lead to a bigger paycheck?\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/TMa4fWwfwFmQmR_EMtjIbmCJlF0/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/TMa4fWwfwFmQmR_EMtjIbmCJlF0/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/TMa4fWwfwFmQmR_EMtjIbmCJlF0/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/TMa4fWwfwFmQmR_EMtjIbmCJlF0/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=ryH27d4GySI:wlnw9RrM8Cs:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/ryH27d4GySI\" height=\"1\" width=\"1\"/&gt;";
Attrib[13] = "\n\n		\n\n		<item>\n\n			<title>10 Things Graduate Schools Won\'t Tell You (10 Things)</title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/ryH27d4GySI/</link>\n\n			<pubDate>Thu, 02 Sep 2010 05:01:10 -0400</pubDate>\n\n			<description>The big question: Will an advanced degree lead to a bigger paycheck?\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/TMa4fWwfwFmQmR_EMtjIbmCJlF0/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/TMa4fWwfwFmQmR_EMtjIbmCJlF0/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/TMa4fWwfwFmQmR_EMtjIbmCJlF0/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/TMa4fWwfwFmQmR_EMtjIbmCJlF0/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=ryH27d4GySI:wlnw9RrM8Cs:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/ryH27d4GySI\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Marlys Harris)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/personal-finance/college-planning/10-things-graduate-schools-wont-tell-you/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/personal-finance/college-planning/10-things-graduate-schools-wont-tell-you/?cid=1122</feedburner:origLink>";
Link[13] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/ryH27d4GySI/";
DateN[13] = "20100902050110";

Title[14] = "Not a Stockpicker\'s Market ";
Desc[14] = "Despite increasing talk of ominous market indicators, stocks are more likely to rally.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/3bknMYu_zZY0sq0FqOhcrRMmuzM/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/3bknMYu_zZY0sq0FqOhcrRMmuzM/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/3bknMYu_zZY0sq0FqOhcrRMmuzM/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/3bknMYu_zZY0sq0FqOhcrRMmuzM/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=6gJiaLnk3I0:TB8s4jGw2eM:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/6gJiaLnk3I0\" height=\"1\" width=\"1\"/&gt;";
Attrib[14] = "\n\n		\n\n		<item>\n\n			<title>Not a Stockpicker\'s Market </title>\n\n			<link>http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/6gJiaLnk3I0/</link>\n\n			<pubDate>Thu, 02 Sep 2010 05:01:00 -0400</pubDate>\n\n			<description>Despite increasing talk of ominous market indicators, stocks are more likely to rally.\n\n&lt;p&gt;&lt;a href=\"http://feedads.g.doubleclick.net/~at/3bknMYu_zZY0sq0FqOhcrRMmuzM/0/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/3bknMYu_zZY0sq0FqOhcrRMmuzM/0/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;\n\n&lt;a href=\"http://feedads.g.doubleclick.net/~at/3bknMYu_zZY0sq0FqOhcrRMmuzM/1/da\"&gt;&lt;img src=\"http://feedads.g.doubleclick.net/~at/3bknMYu_zZY0sq0FqOhcrRMmuzM/1/di\" border=\"0\" ismap=\"true\"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class=\"feedflare\"&gt;\n\n&lt;a href=\"http://feeds.smartmoney.com/~ff/smartmoney/headlines?a=6gJiaLnk3I0:TB8s4jGw2eM:xfcBjTuBJok\"&gt;&lt;img src=\"http://feeds.feedburner.com/~ff/smartmoney/headlines?d=xfcBjTuBJok\" border=\"0\"&gt;&lt;/img&gt;&lt;/a&gt;\n\n&lt;/div&gt;&lt;img src=\"http://feeds.feedburner.com/~r/smartmoney/headlines/~4/6gJiaLnk3I0\" height=\"1\" width=\"1\"/&gt;</description>\n\n			<author>letters@smartmoney.com (Vito J. Racanelli)</author>\n\n<guid isPermaLink=\"false\">http://www.smartmoney.com/investing/stocks/not-a-stockpickers-market/</guid> <source url=\"http://www.smartmoney.com/rss/publisherLink.cfm?publisher=SmartMoney%2Ecom\">SmartMoney.com</source>\n\n		<feedburner:origLink>http://www.smartmoney.com/investing/stocks/not-a-stockpickers-market/?cid=1122</feedburner:origLink>";
Link[14] = "http://feeds.smartmoney.com/~r/smartmoney/headlines/~3/6gJiaLnk3I0/";
DateN[14] = "20100902050100";

} // end with block
