/************************************************************
	Patrick Buchanan (pb)

	Netscape 4.x doesn't understand the "background" CSS property therefore we are 
	this only writes the CSS rules that use them if the browser is not NN4.x.

	Local section section body table descriptions.
	
	I am having to use the background CSS shortcut instead of individual
	background-image and background-repeat because "background" shortcut is more widely accepted.
	In fact, IE4.x is just buggy without it.  I also added the "top left" for positioning which 
	also improved how IE4.x rendered the graphic otherwise it was not flush up against the margins.
************************************************************************/

//check for NN4.x  true if NN4.x otherwise false
Netscape4 = (document.layers) ? true : false;
// if it is not NN 4.x
if (!Netscape4)
{
	//alert("not NN4.x");
	document.write("<STYLE TYPE='text/css'>");
	document.write(".sectionMemberCenter { background: url(http://www.rtfc.coop/membercenter/images/member_center_background.gif) no-repeat top left; }");
	document.write(".sectionInformation { background: url(http://www.rtfc.coop/information/images/info_pubs_background.gif) no-repeat top left; }");
	document.write(".sectionFinancialServices { background: url(http://www.rtfc.coop/financialservices/images/fin_services_background.gif) no-repeat top left; }");
	document.write(".sectionLinks { background: url(http://www.rtfc.coop/links/images/links_background.gif) no-repeat top left; }");
	document.write(".sectionAboutUs { background: url(http://www.rtfc.coop/aboutus/images/background_phone.gif) no-repeat top left; }");
	document.write(".sectionUtilities { background: url(http://www.rtfc.coop/utilities/images/info_pubs_background.gif) no-repeat top left; }");
	document.write(".sectionHome { background: url(http://www.rtfc.coop/images/homepage/background_columns2.gif) no-repeat top left; }");
	// slantedBar is for the home page.  It is the bar separting the main content from the left-side bar
	document.write(".slantedBar { background: url(http://www.rtfc.coop/images/homepage/blue_bar_slant.gif) no-repeat top left; }");
	document.write(".sideBar { background: url(http://www.rtfc.coop/images/homepage/money_bar_background.gif) no-repeat top left; }");
	document.write("</STYLE>");
}// END if (Netscape4)


