	////////////////////////////////////////////////
	//              GLOBAL VARIABLES              //
	////////////////////////////////////////////////

	// The name of the headlines file. (FILENAME)
	ns.headlinesTemplate = "http://www.vfinance.com/home.asp";

	// The name of the article file. (FILENAME)
	ns.articleTemplate = "http://www.vfinance.com/home.asp";

	////////////////////////////////////////////////
	//                CATEGORY NAV                //
	////////////////////////////////////////////////

	// The bullet next to a parent category. (HTML)
	ns.categoryNav.parentBullet = "<CENTER><FONT FACE=\"verdana\" SIZE=1>+</FONT></CENTER>";

	// The bullet next to a parent category when it is selected or expanded. (HTML)
	ns.categoryNav.currentParentBullet = "<CENTER><FONT FACE=\"verdana\" SIZE=1>-</FONT></CENTER>";

	// The bullet next to a category when it has no child categories. (HTML)
	ns.categoryNav.childBullet = "<CENTER><FONT FACE=\"verdana\" SIZE=1>-</FONT></CENTER>";

	// The bullet next to a category when it has no child categories and it is selected. (HTML)
	ns.categoryNav.currentChildBullet = "<CENTER><FONT FACE=\"verdana\" SIZE=1>-</FONT></CENTER>";

	// A link on the top level.  (CSS STYLE SHEET)
	ns.categoryNav.nsTopLink = "color:000000;";

	// A link on the top level that is selected.  (CSS STYLE SHEET)
	ns.categoryNav.nsCurrentTopLink = "color:CC0000;";

	// A link on the top level that has a child selected.  (CSS STYLE SHEET)
	ns.categoryNav.nsCurrentTopLinkExpanded = "color:CC0000;";

	// A link under the top level.  (CSS STYLE SHEET)
	ns.categoryNav.nsSubLink = "color:000000;";

	// A link under the top level that is selected.  (CSS STYLE SHEET)
	ns.categoryNav.nsCurrentSubLink = "color:CC0000;";

	// A link under the top level that has child categories underneath it.  (CSS STYLE SHEET)
	ns.categoryNav.nsSubParentLink = "color:000000;";

	// A link under the top level that has child categories underneath it and is selected.  (CSS STYLE SHEET)
	ns.categoryNav.nsCurrentSubParentLink = "color:CC0000;";

	// A link under the top level that has a child category underneath it selected.  (CSS STYLE SHEET)
	ns.categoryNav.nsCurrentSubParentLinkExpanded = "color:CC0000;";

	// The width of the category navigation. (NUMBER)
	ns.categoryNav.width = 160;

	// The width of the indent. (NUMBER)
	// Note: If you used a 40 pixel image as a bullet, this indent width should be atleast 40 pixels
	ns.categoryNav.indentWidth = 15;


	////////////////////////////////////////////////
	//             PREVIOUS/NEXT NAV              //
	////////////////////////////////////////////////

	// The text/image of the "Next" link. (HTML)
	ns.prevNextNav.nextLinkClickable = " | next";

	// The text/image of the "Next" link when there are no articles/headlines left. (HTML)
	// For instance if you wanted to have a faded out version of the clickable link. Or something to hold the space.
	ns.prevNextNav.nextLinkNonClickable = " | next";

	// The text/image of the "Previous" link. (HTML)
	ns.prevNextNav.prevLinkClickable = "previous | ";

	// The text/image of the "Previous" link when there are no articles/headlines left. (HTML)
	// For instance if you wanted to have a faded out version of the clickable link. Or something to hold the space.
	ns.prevNextNav.prevLinkNonClickable = "previous | ";

	// The text/image of the "Home" link. This link brings the user back to the Index of headlines. (HTML)
	ns.prevNextNav.homeLink = "back";

	// The style for the "Next" link. (CSS STYLE SHEET)
	ns.prevNextNav.nextLinkStyle = "color:000000; text-decoration:none;";

	// The style for the "Previous" link. (CSS STYLE SHEET)
	ns.prevNextNav.prevLinkStyle = "color:000000; text-decoration:none;";

	// The style for the "Home" link. (CSS STYLE SHEET)
	ns.prevNextNav.homeLinkStyle = "color:000000; text-decoration:none;";

	// If you want the word "next" to show up, when it is clickable, and not clickable, and have it a
	// different color when it isn't a link, change this color. (COLOR: HEXADECIMAL VALUE)
	ns.prevNextNav.nonClickableLinkColor = "C0C0C0";


	////////////////////////////////////////////////
	//              CURRENT CATEGORY              //
	////////////////////////////////////////////////

	// The style for the current category links. (CSS STYLE SHEET)
	ns.currentCategory.linkStyle = "color:000000; text-decoration:none;"

	// The delimeter between the hierarchy of categoryes. (HTML)
	ns.currentCategory.delimeter = " <FONT COLOR=\"000000\">:</FONT> ";


	////////////////////////////////////////////////
	//              HEADLINE LISTING              //
	////////////////////////////////////////////////

	// The style of the headline links. (CSS STYLE SHEET)
	ns.headlines.linkStyle = "color:003366;";

	// The HTML before each link. (HTML)
	ns.headlines.preLinkHTML = "<B>";

	// The HTML after each link. (HTML)
	ns.headlines.postLinkHTML = "</B><BR><img src='/images/market_headlines_dots.gif' border=0><BR>";

	// The HTML before the Provider/Date line. (HTML)
	ns.headlines.preProviderDateHTML = "<FONT COLOR=\"666666\"><img src='/images/invisible.gif' width=12>";

	// The HTML after the Provider/Date line. (HTML)
	ns.headlines.postProviderDateHTML = "</FONT>";

	// The number of headlines per page. (NUMBER)
	ns.headlines.articlesPerPage = 5;


	////////////////////////////////////////////////
	//                  ARTICLE                   //
	////////////////////////////////////////////////

	// The HTML before the headline. (HTML)
	ns.article.preHeadlineHTML = "<FONT SIZE=3><B>";

	// The HTML after the headline. (HTML)
	ns.article.postHeadlineHTML = "</B></FONT>";

	// The HTML before the body. (HTML)
	ns.article.preBodyHTML = "";

	// The HTML after the body. (HTML)
	ns.article.postBodyHTML = "";

	// The HTML before the copyright. (HTML)
	ns.article.preCopyrightHTML = "<P>";

	// The HTML after the copyright. (HTML)
	ns.article.postCopyrightHTML = "";


	////////////////////////////////////////////////
	//             RELATED HEADLINES              //
	////////////////////////////////////////////////

	// The style for the related headline links. (CSS STYLE SHEET)
	ns.relatedHeadlines.linkStyle = "color:CC0000";

	// The HTML before each link. (HTML)
	ns.relatedHeadlines.preLinkHTML = "<P>• ";

	// The HTML after each link. (HTML)
	ns.relatedHeadlines.postLinkHTML = "";

	// The number of related headlines per page. (NUMBER)
	ns.relatedHeadlines.articlesPerPage = 5;


	////////////////////////////////////////////////
	//              SUMMARY APPLET                //
	////////////////////////////////////////////////

	// The width of the applet (NUMBER)
	ns.summaryApplet.width = "185";

	// The height of the applet (NUMBER)
	ns.summaryApplet.height = "200";

	// The font of the title (FONT NAME)
	ns.summaryApplet.titleFont = "verdana";

	// The size of the title (NUMBER)
	ns.summaryApplet.titleSize = "11";

	// The color of the title (COLOR NAME)
	ns.summaryApplet.titleColor = "black";

	// The color of the title (RGB VALUE)
	ns.summaryApplet.titleColorRGB = "000,000,000";

	// The default text of the title, when the page loads. (TEXT)
	ns.summaryApplet.titleText = "";

	// This option lets you disable showing the article headline in the applet. ("true" or "false")
	ns.summaryApplet.showTitle = "false";

	// The font of the summary (FONT NAME)
	ns.summaryApplet.summaryFont = "verdana";

	// The size of the summary (NUMBER)
	ns.summaryApplet.summarySize = "10";

	// The color of the summary (COLOR NAME)
	ns.summaryApplet.summaryColor = "black";

	// The color of the summary (RGB VALUE)
	ns.summaryApplet.summaryColorRGB = "000,000,000";

	// The default text of the summary, when the page loads. (TEXT)
	ns.summaryApplet.summaryText = "To view news, choose a category from the left menu on the left, or select an article from the current list. To see an article's summary, roll your mouse over it's headline.";

	// The font of the provider (FONT NAME)
	ns.summaryApplet.providerFont = "verdana";

	// The size of the provider (NUMBER)
	ns.summaryApplet.providerSize = "10";

	// The color of the provider (COLOR NAME)
	ns.summaryApplet.providerColor = "black";

	// The color of the provider (RGB VALUE)
	ns.summaryApplet.providerColorRGB = "000,000,000";

	// The default text of the summary, when the page loads. (TEXT)
	ns.summaryApplet.providerText = "";

	// This option lets you disable preceeding the provider with a heading. ("true" or "false")
	ns.summaryApplet.showProviderHeading = "false";

	// The font of the date (FONT NAME)
	ns.summaryApplet.dateFont = "verdana";

	// The size of the date (NUMBER)
	ns.summaryApplet.dateSize = "10";

	// The color of the date (COLOR NAME)
	ns.summaryApplet.dateColor = "black";

	// The color of the date (RGB VALUE)
	ns.summaryApplet.dateColorRGB = "000,000,000";

	// The default text of the summary, when the page loads. (TEXT)
	ns.summaryApplet.dateText = "";

	// This option lets you disable preceeding the date with a heading. ("true" or "false")
	ns.summaryApplet.showDateHeading = "false";

	// The name of a background image. (PATH/TO/FILENAME)
	ns.summaryApplet.backgroundImage = "";

	// The color of the background (COLOR NAME)
	ns.summaryApplet.backgroundColor = "white";

	// The color of the background (RGB VALUE)
	ns.summaryApplet.backgroundColorRGB = "255,255,255";

	// The color of the border (COLOR NAME)
	ns.summaryApplet.borderColor = "white";

	// The color of the border (RGB VALUE)
	ns.summaryApplet.borderColorRGB = "255,255,255";

