/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('100000','Global Brother',ssUrlPrefix + 'index.htm',null,'add_property==\x3c\x21--\\x0a\x26lt\x3blink rel\x3d\"stylesheet\" href\x3d\"/library/websites/www.com/top/css/version4.css\" type\x3d\"text/css\"\x26gt\x3b\\x0a\x26lt\x3blink rel\x3d\"stylesheet\" href\x3d\"/library/websites/www.com/top/css/import.css\" type\x3d\"text/css\" media\x3d\"screen,print\"\x26gt\x3b\\x0a--\x3e\\x0a\x3clink rel\x3d\"shortcut icon\" href\x3d\"/brother_icon.ico\" /\x3e\\x0a\x3clink rel\x3d\"stylesheet\" href\x3d\"/library/websites/www.com/top_new/css/import.css\" type\x3d\"text/css\" media\x3d\"all\" /\x3e\\x0a','description== ','keywords==Brother, brother, MFC, Multi-Functions Center, printer, facsimile, fax, sewing, sewing machine, embroidery, stamp, stampcreator, p-touch, labeling, machine tool, typewriter, word processor, IR, investor, environment, procurement, Brother Industries,Ltd.','title==Welcome to Global Brother');
g_navNode_0=g_navNode_Root.addNode('100100','Brother Communication Space',ssUrlPrefix + 'bcs/index.htm','Custom_Body_Attribute==onLoad\x3d\"MM_preloadImages\x28\\x27/bcs/cojp/library/websites/www.cojp/jp/bcs/meh/mishin03_on.gif\\x27\x29\"','keywords==Brother,brother,showroom','title==Brother Communication Space ');
g_navNode_0_0=g_navNode_0.addNode('100101','Floor Guide',ssUrlPrefix + 'bcs/floor/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space Floor Guide - Floor Guide');
g_navNode_0_0_0=g_navNode_0_0.addNode('100102','Entrance Hall',ssUrlPrefix + 'bcs/floor/entrance/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space ');
g_navNode_0_0_1=g_navNode_0_0.addNode('100103','Communication Zone',ssUrlPrefix + 'bcs/floor/communication/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space ');
g_navNode_0_0_2=g_navNode_0_0.addNode('100104','New Working Style Zone',ssUrlPrefix + 'bcs/floor/workstyle/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space ');
g_navNode_0_0_3=g_navNode_0_0.addNode('100105','History and Theme Zone',ssUrlPrefix + 'bcs/floor/history/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space ');
g_navNode_0_0_3_0=g_navNode_0_0_3.addNode('100112','Mechanical Engineering Heritage No.15',ssUrlPrefix + 'bcs/floor/history/meh/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space ');
g_navNode_0_0_4=g_navNode_0_0.addNode('100106','Theme Exhibition Area',ssUrlPrefix + 'bcs/floor/project/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space ');
g_navNode_0_0_4_0=g_navNode_0_0_4.addNode('100111','List of Past Exhibits',ssUrlPrefix + 'bcs/floor/project/list/index.htm','keywords==Brother,brother,showroom','title==List of the past planning exhibits');
g_navNode_0_1=g_navNode_0.addNode('100107','User Guide',ssUrlPrefix + 'bcs/guide/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space');
g_navNode_0_2=g_navNode_0.addNode('100109','Exhibit List',ssUrlPrefix + 'bcs/list/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space');
g_navNode_0_3=g_navNode_0.addNode('100110','About BCS',ssUrlPrefix + 'bcs/about/index.htm','keywords==Brother,brother,showroom','title==Brother Communication Space');
g_navNode_1=g_navNode_Root.addNode('101000','en',ssUrlPrefix + 'en/index.htm');
g_navNode_1_0=g_navNode_1.addNode('110000','About Brother',ssUrlPrefix + 'en/corporate/index.htm','keywords==brother','title==Brother Industries \x7c About Brother');
g_navNode_1_0_0=g_navNode_1_0.addNode('110001','President\'s Message',ssUrlPrefix + 'en/corporate/message/index.htm','title==About Brother \x7c From President');
g_navNode_1_0_1=g_navNode_1_0.addNode('110002','Brother\'s Philosophy',ssUrlPrefix + 'en/corporate/philosophy/index.htm','title==coporate idea');
g_navNode_1_0_2=g_navNode_1_0.addNode('110003','Corporate Governance',ssUrlPrefix + 'en/corporate/governance/index.htm','title==Corporate Governance');
g_navNode_1_0_2_0=g_navNode_1_0_2.addNode('110004','Compliance',ssUrlPrefix + 'en/corporate/governance/compliance/index.htm','title==Corporate Governance');
g_navNode_1_0_3=g_navNode_1_0.addNode('110005','Global Charter',ssUrlPrefix + 'en/corporate/charter/index.htm','title==social environment');
g_navNode_1_0_4=g_navNode_1_0.addNode('110006','Global Vision 21 Mid and Long Term Corporate Vision',ssUrlPrefix + 'en/corporate/gv21/index.htm','keywords==Brother,strategy,mid-term,business,2012','title==Global Vision 21');
g_navNode_1_0_5=g_navNode_1_0.addNode('110008','Corporate Data',ssUrlPrefix + 'en/corporate/data/index.htm','title==Corporate Data');
g_navNode_1_0_6=g_navNode_1_0.addNode('110009','Global Network',ssUrlPrefix + 'en/corporate/network/index.htm','title==Corporate Data');
g_navNode_1_0_6_0=g_navNode_1_0_6.addNode('110010','Americas',ssUrlPrefix + 'en/corporate/network/americas/index.htm','title==Corporate Data');
g_navNode_1_0_6_1=g_navNode_1_0_6.addNode('110017','Europe / Africa / Middle East',ssUrlPrefix + 'en/corporate/network/europe/index.htm','title==Corporate Data');
g_navNode_1_0_6_2=g_navNode_1_0_6.addNode('110038','Asia / Oceania',ssUrlPrefix + 'en/corporate/network/asia/index.htm','title==Corporate Data');
g_navNode_1_0_6_3=g_navNode_1_0_6.addNode('110051','A List Of Foundation Dates',ssUrlPrefix + 'en/corporate/network/fundation_date/index.htm','title==Corporate Data');
g_navNode_1_0_7=g_navNode_1_0.addNode('110052','Brother Value Chain Management',ssUrlPrefix + 'en/corporate/bvcm/index.htm','title==BVCM');
g_navNode_1_0_7_0=g_navNode_1_0_7.addNode('110053','Customers',ssUrlPrefix + 'en/corporate/bvcm/customer/index.htm','title==BVCM');
g_navNode_1_0_7_1=g_navNode_1_0_7.addNode('110054','Demand Chain',ssUrlPrefix + 'en/corporate/bvcm/demand/index.htm','title==BVCM');
g_navNode_1_0_7_2=g_navNode_1_0_7.addNode('110055','Concurrent Chain',ssUrlPrefix + 'en/corporate/bvcm/concurrent/index.htm','title==BVCM');
g_navNode_1_0_7_3=g_navNode_1_0_7.addNode('110056','Supply Chain',ssUrlPrefix + 'en/corporate/bvcm/supply/index.htm','title==BVCM');
g_navNode_1_0_8=g_navNode_1_0.addNode('110057','Business Segment',ssUrlPrefix + 'en/corporate/segment/index.htm','title==Business Segment');
g_navNode_1_0_8_0=g_navNode_1_0_8.addNode('110058','Printing \x26 Solutions',ssUrlPrefix + 'en/corporate/segment/psc/index.htm','title==Business Segment');
g_navNode_1_0_8_1=g_navNode_1_0_8.addNode('110059','Personal \x26 Home',ssUrlPrefix + 'en/corporate/segment/phc/index.htm','title==Business Segment');
g_navNode_1_0_8_2=g_navNode_1_0_8.addNode('110060','Machinery \x26 Solution',ssUrlPrefix + 'en/corporate/segment/msc/index.htm','title==Business Segment');
g_navNode_1_0_9=g_navNode_1_0.addNode('110061','Corporate History',ssUrlPrefix + 'en/corporate/history/index.htm','title==Corporate History');
g_navNode_1_0_9_0=g_navNode_1_0_9.addNode('110062','Technology and Product History',ssUrlPrefix + 'en/corporate/history/technology/index.htm','title==Corporate History');
g_navNode_1_0_10=g_navNode_1_0.addNode('110063','Category Sitemap',ssUrlPrefix + 'en/corporate/sitemap/index.htm','title==Category Sitemap');
g_navNode_1_1=g_navNode_1.addNode('120000','Brother\'s CSR',ssUrlPrefix + 'en/csr/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_0=g_navNode_1_1.addNode('120001','To Download PDF',ssUrlPrefix + 'en/csr/download/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_0_0=g_navNode_1_1_0.addNode('120055','Social Responsibility Report',ssUrlPrefix + 'en/csr/download/report/index.htm');
g_navNode_1_1_1=g_navNode_1_1.addNode('120002','Management\'s Message',ssUrlPrefix + 'en/csr/message/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_2=g_navNode_1_1.addNode('120003','Brother Group\'s CSR',ssUrlPrefix + 'en/csr/group/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_2_0=g_navNode_1_1_2.addNode('120004','Brother\'s CSR management',ssUrlPrefix + 'en/csr/group/brother/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_2_1=g_navNode_1_1_2.addNode('120005','Face-to-Face Talk',ssUrlPrefix + 'en/csr/group/talk/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_2_2=g_navNode_1_1_2.addNode('120007','Topic\x3a Customers',ssUrlPrefix + 'en/csr/group/customers/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_2_3=g_navNode_1_1_2.addNode('120009','Topic\x3a Employees',ssUrlPrefix + 'en/csr/group/employees/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_2_4=g_navNode_1_1_2.addNode('120057','FY2008 Topics \x26 Targets',ssUrlPrefix + 'en/csr/group/target/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_3=g_navNode_1_1.addNode('120011','With Customers',ssUrlPrefix + 'en/csr/customers/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_3_0=g_navNode_1_1_3.addNode('120058','User Friendly Products',ssUrlPrefix + 'en/csr/customers/friendly/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_3_1=g_navNode_1_1_3.addNode('120012','Satisfactory Products',ssUrlPrefix + 'en/csr/customers/products/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_3_2=g_navNode_1_1_3.addNode('120015','Satisfactory Support',ssUrlPrefix + 'en/csr/customers/supports/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_3_3=g_navNode_1_1_3.addNode('120017','Dialogue',ssUrlPrefix + 'en/csr/customers/dialogue/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_3_4=g_navNode_1_1_3.addNode('120018','Standpoint \x26 Measures',ssUrlPrefix + 'en/csr/customers/standpoint/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_4=g_navNode_1_1.addNode('120019','With Employees',ssUrlPrefix + 'en/csr/employees/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_4_0=g_navNode_1_1_4.addNode('120020','Basic Policy',ssUrlPrefix + 'en/csr/employees/policy/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_4_1=g_navNode_1_1_4.addNode('120021','Diversified Employment',ssUrlPrefix + 'en/csr/employees/employment/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_4_1_0=g_navNode_1_1_4_1.addNode('120022','Diversified Employment2',ssUrlPrefix + 'en/csr/employees/employment/employment2/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_4_2=g_navNode_1_1_4.addNode('120023','For Self-Fulfillment',ssUrlPrefix + 'en/csr/employees/fulfillment/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_4_3=g_navNode_1_1_4.addNode('120026','Safe Workplace',ssUrlPrefix + 'en/csr/employees/workplace/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_4_4=g_navNode_1_1_4.addNode('120028','Understanding Vision',ssUrlPrefix + 'en/csr/employees/vision/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_4_5=g_navNode_1_1_4.addNode('120032','Standpoint \x26 Measures',ssUrlPrefix + 'en/csr/employees/standpoint/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_5=g_navNode_1_1.addNode('120033','With Shareholders',ssUrlPrefix + 'en/csr/shareholders/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_5_0=g_navNode_1_1_5.addNode('120034','Allocating Profits',ssUrlPrefix + 'en/csr/shareholders/profits/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_5_1=g_navNode_1_1_5.addNode('120035','IR Communication',ssUrlPrefix + 'en/csr/shareholders/communication/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_5_2=g_navNode_1_1_5.addNode('120036','Standpoint \x26 Measures',ssUrlPrefix + 'en/csr/shareholders/standpoint/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_5_3=g_navNode_1_1_5.addNode('120066','FY2008 Topics \x26 Targets',ssUrlPrefix + 'en/csr/shareholders/challenge/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_6=g_navNode_1_1.addNode('120037','With Partners',ssUrlPrefix + 'en/csr/partners/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_6_0=g_navNode_1_1_6.addNode('120038','Working with Partners',ssUrlPrefix + 'en/csr/partners/work_with/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_6_1=g_navNode_1_1_6.addNode('120042','Standpoint \x26 Measures',ssUrlPrefix + 'en/csr/partners/standpoint/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_6_2=g_navNode_1_1_6.addNode('120067','Sharing Information',ssUrlPrefix + 'en/csr/partners/information/index.htm');
g_navNode_1_1_6_3=g_navNode_1_1_6.addNode('120071','Quality Improvement Activities',ssUrlPrefix + 'en/csr/partners/quality/index.htm');
g_navNode_1_1_6_4=g_navNode_1_1_6.addNode('120073','FY2008 Topics \x26 Targets',ssUrlPrefix + 'en/csr/partners/challenge/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_7=g_navNode_1_1.addNode('120043','With Society',ssUrlPrefix + 'en/csr/society/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_7_0=g_navNode_1_1_7.addNode('120044','Group-wide Approaches',ssUrlPrefix + 'en/csr/society/group_wide/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_7_1=g_navNode_1_1_7.addNode('120046','Approaches in America',ssUrlPrefix + 'en/csr/society/in_america/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_7_2=g_navNode_1_1_7.addNode('120048','Approaches in Eupope',ssUrlPrefix + 'en/csr/society/in_europe/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_7_3=g_navNode_1_1_7.addNode('120050','Approaches in Asia',ssUrlPrefix + 'en/csr/society/in_asia/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_7_4=g_navNode_1_1_7.addNode('120053','Standpoint \x26 Measures',ssUrlPrefix + 'en/csr/society/standpoint/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_7_5=g_navNode_1_1_7.addNode('120074','In Japan',ssUrlPrefix + 'en/csr/society/japan/index.htm');
g_navNode_1_1_7_6=g_navNode_1_1_7.addNode('120085','FY2008 Topics \x26 Targets',ssUrlPrefix + 'en/csr/society/challenge/index.htm');
g_navNode_1_1_8=g_navNode_1_1.addNode('120054','Category Sitemap',ssUrlPrefix + 'en/csr/sitemap/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_1_9=g_navNode_1_1.addNode('120056','GRI index',ssUrlPrefix + 'en/csr/gri/index.htm','keywords==Brother,Corporate Social Responsibility,GRI','title==Brother\\x27s Social Responsibilies');
g_navNode_1_2=g_navNode_1.addNode('140000','Investor Information',ssUrlPrefix + 'en/investor/index.htm','keywords==brother','title==Brother Investor Information');
g_navNode_1_2_0=g_navNode_1_2.addNode('140001','Category Sitemap',ssUrlPrefix + 'en/investor/sitemap/index.htm','keywords==brother','title==Brother Investor Information');
g_navNode_1_2_1=g_navNode_1_2.addNode('140002','Financial Information',ssUrlPrefix + 'en/investor/financial_info/index.htm','keywords==brother','title==Brother Investor Information');
g_navNode_1_2_2=g_navNode_1_2.addNode('140007','Financial Highlights',ssUrlPrefix + 'en/investor/highlights/index.htm','title==Brother Investor Information');
g_navNode_1_2_2_0=g_navNode_1_2_2.addNode('140008','Result of operations',ssUrlPrefix + 'en/investor/highlights/results/index.htm','title==Brother Investor Information');
g_navNode_1_2_2_1=g_navNode_1_2_2.addNode('140009','Sales compositon Ratio',ssUrlPrefix + 'en/investor/highlights/sales/index.htm','title==Brother Investor Information');
g_navNode_1_2_2_2=g_navNode_1_2_2.addNode('140010','Profitability',ssUrlPrefix + 'en/investor/highlights/profitability/index.htm','title==Brother Investor Information');
g_navNode_1_2_2_3=g_navNode_1_2_2.addNode('140011','Stability',ssUrlPrefix + 'en/investor/highlights/stability/index.htm','title==Brother Investor Information');
g_navNode_1_2_2_4=g_navNode_1_2_2.addNode('140012','Indicators per Share',ssUrlPrefix + 'en/investor/highlights/indicators/index.htm','keywords==Brother,Investor,Information','title==Brother Investor Information');
g_navNode_1_2_2_5=g_navNode_1_2_2.addNode('140013','Capital Expenditure',ssUrlPrefix + 'en/investor/highlights/expenditure/index.htm','title==Brother Investor Information');
g_navNode_1_2_2_6=g_navNode_1_2_2.addNode('140014','R\x26D Expenses',ssUrlPrefix + 'en/investor/highlights/expences/index.htm','title==Brother Investor Information');
g_navNode_1_2_2_7=g_navNode_1_2_2.addNode('140015','Download Data',ssUrlPrefix + 'en/investor/highlights/download/index.htm','title==Brother Investor Information');
g_navNode_1_2_3=g_navNode_1_2.addNode('140016','Annual Report',ssUrlPrefix + 'en/investor/reports/index.htm','title==Brother Investor Information');
g_navNode_1_2_4=g_navNode_1_2.addNode('140021','Shareholders Meeting',ssUrlPrefix + 'en/investor/meeting/index.htm','title==Brother Investor Information');
g_navNode_1_2_5=g_navNode_1_2.addNode('140022','IR Schedule',ssUrlPrefix + 'en/investor/schedule/index.htm','keywords==brother','title==Brother Investor Information');
g_navNode_1_2_6=g_navNode_1_2.addNode('140023','Cautionary Statement',ssUrlPrefix + 'en/investor/caution/index.htm','title==Brother Investor Information');
g_navNode_1_2_7=g_navNode_1_2.addNode('140024','IR News',ssUrlPrefix + 'en/investor/news/index.htm','keywords==brother','title==Brother Investor Information');
g_navNode_1_3=g_navNode_1.addNode('150000','News',ssUrlPrefix + 'en/news/index.htm','keywords==brother','title==Brother News Release');
g_navNode_1_3_0=g_navNode_1_3.addNode('150056','News2008',ssUrlPrefix + 'en/news/2008/index.htm','keywords==brother','title==Brother News Release');
g_navNode_1_3_0_0=g_navNode_1_3_0.addNode('150058','Jan_31',ssUrlPrefix + 'en/news/2008/ForestCoservation/index.htm','keywords==Brother,News,Forest,Coservation,Jan','title==Brother News Release');
g_navNode_1_3_0_1=g_navNode_1_3_0.addNode('150057','Jan_30',ssUrlPrefix + 'en/news/2008/wien/index.htm','keywords==wien,museum,brother,Nagoya','title==Brother News Release');
g_navNode_1_3_1=g_navNode_1_3.addNode('150046','News2007',ssUrlPrefix + 'en/news/2007/index.htm','keywords==brother','title==Brother News Release');
g_navNode_1_3_1_0=g_navNode_1_3_1.addNode('150055','Dec_14',ssUrlPrefix + 'en/news/2007/consumables_e/index.htm','keywords==Brother,release,consumables,court,drum,trade marks','title==Brother News Release');
g_navNode_1_3_1_1=g_navNode_1_3_1.addNode('150054','Dec_13',ssUrlPrefix + 'en/news/2007/100th_Anniversary_e/index.htm','keywords==Brother 100th Anniversary\u30002008','title==Brother News Release');
g_navNode_1_3_1_2=g_navNode_1_3_1.addNode('150053','Nov_22',ssUrlPrefix + 'en/news/2007/bangla_e/index.htm','keywords==Brother,Bangladesh,victim','title==Brother News Release');
g_navNode_1_3_1_3=g_navNode_1_3_1.addNode('150052','Nov_8',ssUrlPrefix + 'en/news/2007/Nov_8/index.htm','keywords==Brother the forest fire','title==Brother News Release');
g_navNode_1_3_1_4=g_navNode_1_3_1.addNode('150051','Oct_10',ssUrlPrefix + 'en/news/2007/bas342g/index.htm','title==Brother News Release ');
g_navNode_1_3_1_5=g_navNode_1_3_1.addNode('150050','Aug_30',ssUrlPrefix + 'en/news/2007/Aug_30/index.htm','title==Brother News Release ');
g_navNode_1_3_1_6=g_navNode_1_3_1.addNode('150048','May_29',ssUrlPrefix + 'en/news/2007/hs-40m/index.htm','title==Brother News Release');
g_navNode_1_3_1_6_0=g_navNode_1_3_1_6.addNode('150049','May_29',ssUrlPrefix + 'en/news/2007/hs-40m/feature/index.htm','title==Brother News Release');
g_navNode_1_3_1_7=g_navNode_1_3_1.addNode('150047','Mar_16',ssUrlPrefix + 'en/news/2007/us_patent/index.htm','title==Brother News Release');
g_navNode_1_3_2=g_navNode_1_3.addNode('150001','News2006',ssUrlPrefix + 'en/news/2006/index.htm','keywords==brother','title==Brother News Release');
g_navNode_1_3_2_0=g_navNode_1_3_2.addNode('150045','Dec_20',ssUrlPrefix + 'en/news/2006/bici/index.htm');
g_navNode_1_3_2_1=g_navNode_1_3_2.addNode('150044','Dec_4_direct',ssUrlPrefix + 'en/news/2006/dec_4_direct/index.htm','title==Brother News Release');
g_navNode_1_3_2_2=g_navNode_1_3_2.addNode('150043','Dec_4_RH',ssUrlPrefix + 'en/news/2006/dec_4_rh/index.htm','title==Brother News Release');
g_navNode_1_3_2_3=g_navNode_1_3_2.addNode('150042','Nov_9',ssUrlPrefix + 'en/news/2006/nov_9/index.htm','title==Brother News Release');
g_navNode_1_3_2_4=g_navNode_1_3_2.addNode('150041','Oct_18',ssUrlPrefix + 'en/news/2006/oct_18/index.htm','title==Brother News Release');
g_navNode_1_3_2_5=g_navNode_1_3_2.addNode('150040','Jun_21',ssUrlPrefix + 'en/news/2006/jun_21/index.htm','title==Brother News Release');
g_navNode_1_3_2_6=g_navNode_1_3_2.addNode('150037','May_30',ssUrlPrefix + 'en/news/2006/may_30/index.htm','title==Brother News Release');
g_navNode_1_3_3=g_navNode_1_3.addNode('150002','News2005',ssUrlPrefix + 'en/news/2005/index.htm','keywords==brother','title==Brother News Release');
g_navNode_1_3_3_0=g_navNode_1_3_3.addNode('150036','Dec_20',ssUrlPrefix + 'en/news/2005/dec_20/index.htm','title==Brother News Release');
g_navNode_1_3_3_1=g_navNode_1_3_3.addNode('150035','Dec_12',ssUrlPrefix + 'en/news/2005/dec_12/index.htm','title==Brother News Release');
g_navNode_1_3_3_2=g_navNode_1_3_3.addNode('150033','Nov_17',ssUrlPrefix + 'en/news/2005/nov_17/index.htm','title==Brother News Release');
g_navNode_1_3_3_3=g_navNode_1_3_3.addNode('150032','Oct_11',ssUrlPrefix + 'en/news/2005/oct_11/index.htm','title==Brother News Release');
g_navNode_1_3_3_4=g_navNode_1_3_3.addNode('150031','Sep_2',ssUrlPrefix + 'en/news/2005/sep_2/index.htm','title==Brother News Release');
g_navNode_1_3_3_5=g_navNode_1_3_3.addNode('150030','Jul_19',ssUrlPrefix + 'en/news/2005/jul_19/index.htm','title==Brother News Release');
g_navNode_1_3_3_6=g_navNode_1_3_3.addNode('150029','Mar_16',ssUrlPrefix + 'en/news/2005/mar_16/index.htm','title==Brother News Release');
g_navNode_1_3_3_7=g_navNode_1_3_3.addNode('150028','Mar_8',ssUrlPrefix + 'en/news/2005/mar_8/index.htm','title==Brother News Release');
g_navNode_1_3_3_8=g_navNode_1_3_3.addNode('150027','Mar_2',ssUrlPrefix + 'en/news/2005/mar_2/index.htm','title==Brother News Release');
g_navNode_1_3_3_9=g_navNode_1_3_3.addNode('150026','Jan_7',ssUrlPrefix + 'en/news/2005/jan_7/index.htm','title==Brother News Release');
g_navNode_1_3_4=g_navNode_1_3.addNode('150003','News2004',ssUrlPrefix + 'en/news/2004/index.htm','keywords==brother','title==Brother News Release');
g_navNode_1_3_4_0=g_navNode_1_3_4.addNode('150025','Dec_6',ssUrlPrefix + 'en/news/2004/dec_6/index.htm','title==Brother News Release');
g_navNode_1_3_4_1=g_navNode_1_3_4.addNode('150024','Nov_24',ssUrlPrefix + 'en/news/2004/nov_24/index.htm','title==Brother News Release');
g_navNode_1_3_4_2=g_navNode_1_3_4.addNode('150023','Sep_21',ssUrlPrefix + 'en/news/2004/sep_21/index.htm','title==Brother News Release');
g_navNode_1_3_4_3=g_navNode_1_3_4.addNode('150022','Aug_20',ssUrlPrefix + 'en/news/2004/aug_20/index.htm','title==Brother News Release');
g_navNode_1_3_4_4=g_navNode_1_3_4.addNode('150021','Jul_15',ssUrlPrefix + 'en/news/2004/jul_15/index.htm','title==Brother News Release');
g_navNode_1_3_4_5=g_navNode_1_3_4.addNode('150020','Jul_14',ssUrlPrefix + 'en/news/2004/jul_14/index.htm','title==Brother News Release');
g_navNode_1_3_4_6=g_navNode_1_3_4.addNode('150019','May_20',ssUrlPrefix + 'en/news/2004/may_20/index.htm','title==Brother News Release');
g_navNode_1_3_4_7=g_navNode_1_3_4.addNode('150018','Apr_28',ssUrlPrefix + 'en/news/2004/apr_28/index.htm','title==Brother News Release');
g_navNode_1_3_4_8=g_navNode_1_3_4.addNode('150017','Apr_15',ssUrlPrefix + 'en/news/2004/apr_15/index.htm','title==Brother News Release');
g_navNode_1_3_5=g_navNode_1_3.addNode('150004','News2003',ssUrlPrefix + 'en/news/2003/index.htm','keywords==brother','title==Brother News Release');
g_navNode_1_3_5_0=g_navNode_1_3_5.addNode('150016','Oct_3',ssUrlPrefix + 'en/news/2003/oct_3/index.htm','title==Brother News Release');
g_navNode_1_3_5_1=g_navNode_1_3_5.addNode('150015','May_16',ssUrlPrefix + 'en/news/2003/may_16/index.htm','title==Brother News Release');
g_navNode_1_3_5_2=g_navNode_1_3_5.addNode('150014','Apr_14',ssUrlPrefix + 'en/news/2003/apr_14/index.htm','title==Brother News Release');
g_navNode_1_3_5_3=g_navNode_1_3_5.addNode('150013','Mar_18',ssUrlPrefix + 'en/news/2003/mar_18/index.htm','title==Brother News Release');
g_navNode_1_3_6=g_navNode_1_3.addNode('150005','News2002',ssUrlPrefix + 'en/news/2002/index.htm','keywords==brother','title==Brother News Release');
g_navNode_1_3_6_0=g_navNode_1_3_6.addNode('150012','Oct_31',ssUrlPrefix + 'en/news/2002/oct_31/index.htm','title==Brother News Release');
g_navNode_1_3_6_1=g_navNode_1_3_6.addNode('150011','Oct_16',ssUrlPrefix + 'en/news/2002/oct_16/index.htm','title==Brother News Release');
g_navNode_1_3_6_2=g_navNode_1_3_6.addNode('150010','Sep_18',ssUrlPrefix + 'en/news/2002/sep_18/index.htm','title==Brother News Release');
g_navNode_1_3_6_3=g_navNode_1_3_6.addNode('150009','May_27_solar',ssUrlPrefix + 'en/news/2002/may_27_solar/index.htm','title==Brother News Release');
g_navNode_1_3_6_4=g_navNode_1_3_6.addNode('150008','May_27_zero_emi',ssUrlPrefix + 'en/news/2002/may_27_zero/index.htm','title==Brother News Release');
g_navNode_1_3_6_5=g_navNode_1_3_6.addNode('150007','Apr_18',ssUrlPrefix + 'en/news/2002/apr_18/index.htm','title==Brother News Release');
g_navNode_1_3_6_6=g_navNode_1_3_6.addNode('150006','Mar_20',ssUrlPrefix + 'en/news/2002/mar_20/index.htm','title==Brother News Release');
g_navNode_1_4=g_navNode_1.addNode('130000','With the Environment',ssUrlPrefix + 'en/eco/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_0=g_navNode_1_4.addNode('130001','Standpoint \x26 System',ssUrlPrefix + 'en/eco/stand_system/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_0_0=g_navNode_1_4_0.addNode('130002','Standpoint',ssUrlPrefix + 'en/eco/stand_system/standpoint/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_0_1=g_navNode_1_4_0.addNode('130003','Management\x28EMS\x29',ssUrlPrefix + 'en/eco/stand_system/ems/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_0_2=g_navNode_1_4_0.addNode('130009','Awareness \x26 Actions',ssUrlPrefix + 'en/eco/stand_system/actions/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_0_3=g_navNode_1_4_0.addNode('130012','Accounting',ssUrlPrefix + 'en/eco/stand_system/accounting/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_0_5=g_navNode_1_4_0.addNode('130014','History',ssUrlPrefix + 'en/eco/stand_system/history/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_1=g_navNode_1_4.addNode('130015','Eco-Conscious Product',ssUrlPrefix + 'en/eco/eco_pro/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_1_0=g_navNode_1_4_1.addNode('130016','At Each Life-Stage',ssUrlPrefix + 'en/eco/eco_pro/life_stage/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_1_1=g_navNode_1_4_1.addNode('130017','Case Examples',ssUrlPrefix + 'en/eco/eco_pro/examples/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_1_2=g_navNode_1_4_1.addNode('130018','Environmental Label',ssUrlPrefix + 'en/eco/eco_pro/label/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_1_3=g_navNode_1_4_1.addNode('130022','Product Design \x26 LCA',ssUrlPrefix + 'en/eco/eco_pro/design/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_1_3_0=g_navNode_1_4_1_3.addNode('130059','Education of Product Designers',ssUrlPrefix + 'en/eco/eco_pro/design/education/index.htm');
g_navNode_1_4_1_4=g_navNode_1_4_1.addNode('130023','Recycle \x26 Collection',ssUrlPrefix + 'en/eco/eco_pro/recycle/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_2=g_navNode_1_4.addNode('130024','Eco Conscious Factory',ssUrlPrefix + 'en/eco/factory/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_2_0=g_navNode_1_4_2.addNode('130025','Input \x26 Output',ssUrlPrefix + 'en/eco/factory/in_out/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_2_1=g_navNode_1_4_2.addNode('130026','Green Procurement',ssUrlPrefix + 'en/eco/factory/green/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_2_2=g_navNode_1_4_2.addNode('130028','Chemical Substances',ssUrlPrefix + 'en/eco/factory/chemical/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_2_3=g_navNode_1_4_2.addNode('130034','Global Warming',ssUrlPrefix + 'en/eco/factory/warming/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_2_4=g_navNode_1_4_2.addNode('130039','Waste Reducution',ssUrlPrefix + 'en/eco/factory/waste/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_2_5=g_navNode_1_4_2.addNode('130041','Activity at Factories',ssUrlPrefix + 'en/eco/factory/activity/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_2_6=g_navNode_1_4_2.addNode('130045','Data of Factories',ssUrlPrefix + 'en/eco/factory/data/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_3=g_navNode_1_4.addNode('130054','Communication',ssUrlPrefix + 'en/eco/communication/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_3_0=g_navNode_1_4_3.addNode('130055','EXPO 2005',ssUrlPrefix + 'en/eco/communication/expo/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_3_1=g_navNode_1_4_3.addNode('130056','Educational Activities',ssUrlPrefix + 'en/eco/communication/educational/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_3_2=g_navNode_1_4_3.addNode('130057','Others',ssUrlPrefix + 'en/eco/communication/others/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_3_3=g_navNode_1_4_3.addNode('130081','exhibit',ssUrlPrefix + 'en/eco/communication/exhibit/index.htm');
g_navNode_1_4_4=g_navNode_1_4.addNode('130058','Standpoint \x26 Measures',ssUrlPrefix + 'en/eco/standpoint/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_5=g_navNode_1_4.addNode('130077','FY2008 Topics \x26 Targets',ssUrlPrefix + 'en/eco/challenge/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_1_4_6=g_navNode_1_4.addNode('130078','Dialogs on environmental education',ssUrlPrefix + 'en/eco/dialog/index.htm','title==Brother\\x27s Social Responsibilities');
g_navNode_2=g_navNode_Root.addNode('200000','Asia_Oceania',ssUrlPrefix + 'as_oc/index.htm','add_property==\x3cMETA HTTP-EQUIV\x3d\"Refresh\" CONTENT\x3d\"0\x3b URL\x3dhttp\x3a//www.brother.com/html/index.htm\x23africa_asia\"\x3e');
g_navNode_2_0=g_navNode_2.addNode('210000','Industrial Sewing Machine',ssUrlPrefix + 'as_oc/ism/index.htm','title==Industrial Sewing machine \x7c Brother');
g_navNode_2_0_0=g_navNode_2_0.addNode('210029','Showcase',ssUrlPrefix + 'as_oc/ism/example/index.htm','title==Showcase \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_0_0=g_navNode_2_0_0.addNode('210030','Beijing Aimer Lingerie Co., Ltd.',ssUrlPrefix + 'as_oc/ism/example/aimer/index.htm','title==Showcase \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_0_1=g_navNode_2_0_0.addNode('210031','Fuqing Xiangxing Handbag Co., Ltd.',ssUrlPrefix + 'as_oc/ism/example/highland/index.htm','title==Showcase \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_0_2=g_navNode_2_0_0.addNode('210034','China Chaojie Garment Co., Ltd.',ssUrlPrefix + 'as_oc/ism/example/chaojie/index.htm','title==Showcase \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_1=g_navNode_2_0.addNode('210012','Software Update',ssUrlPrefix + 'as_oc/ism/upgrade/index.htm','title==PS-300B Upgrade program  \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_1_0=g_navNode_2_0_1.addNode('210013','Procedures',ssUrlPrefix + 'as_oc/ism/upgrade/procedure/index.htm','title==PS-300B Upgrade program  \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_2=g_navNode_2_0.addNode('210001','message',ssUrlPrefix + 'as_oc/ism/message/index.htm','title==Message \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3=g_navNode_2_0.addNode('210002','Lineup',ssUrlPrefix + 'as_oc/ism/lock/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_0=g_navNode_2_0_3.addNode('210004','Twin Needle Lock Stitch Sewing Machine',ssUrlPrefix + 'as_oc/ism/lock/twin_lock/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_1=g_navNode_2_0_3.addNode('210005','Twin Needle Split Needle Bar Lock Stitch Sewing Machine',ssUrlPrefix + 'as_oc/ism/lock/twin_split/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_2=g_navNode_2_0_3.addNode('210006','Zigzag Lock Stitch Sewing Machine',ssUrlPrefix + 'as_oc/ism/lock/zigzag/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_3=g_navNode_2_0_3.addNode('210007','Buttonhole Sewing Machine',ssUrlPrefix + 'as_oc/ism/lock/buttonhole/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_4=g_navNode_2_0_3.addNode('210008','Button Attaching Machine',ssUrlPrefix + 'as_oc/ism/lock/button_attach/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_5=g_navNode_2_0_3.addNode('210009','Bar Tacking Machine / Pattern Tacking Machine',ssUrlPrefix + 'as_oc/ism/lock/tacking/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_6=g_navNode_2_0_3.addNode('210010','Progurammable Electronic Pattern Sewing Machine',ssUrlPrefix + 'as_oc/ism/lock/e_pattern/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_7=g_navNode_2_0_3.addNode('210011','Sewing Data Programming Software',ssUrlPrefix + 'as_oc/ism/lock/software/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_8=g_navNode_2_0_3.addNode('210014','Double Chain Stitch Sewing Machine',ssUrlPrefix + 'as_oc/ism/lock/chain/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_9=g_navNode_2_0_3.addNode('210015','Overedge Sewing Machine',ssUrlPrefix + 'as_oc/ism/lock/overedge/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_3_10=g_navNode_2_0_3.addNode('210016','Blind Stitch Sewing Machine',ssUrlPrefix + 'as_oc/ism/lock/blind/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_4=g_navNode_2_0.addNode('210017','Update History',ssUrlPrefix + 'as_oc/ism/whatsnew/index.htm','title==What\\x27s New \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_5=g_navNode_2_0.addNode('210022','Event \x26 Seminar',ssUrlPrefix + 'as_oc/ism/event/index.htm','title==Event \x7c Industrial Sewing machine \x7c Brother');
g_navNode_2_0_7=g_navNode_2_0.addNode('210027','Contact',ssUrlPrefix + 'as_oc/ism/contact/index.htm');
g_navNode_2_1=g_navNode_2.addNode('211000','Machine Tool',ssUrlPrefix + 'as_oc/machine/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0=g_navNode_2_1.addNode('211001','info',ssUrlPrefix + 'as_oc/machine/info/index.htm');
g_navNode_2_1_0_0=g_navNode_2_1_0.addNode('211002','TC-31B',ssUrlPrefix + 'as_oc/machine/info/tc31b/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_0_0=g_navNode_2_1_0_0.addNode('211003','Feature',ssUrlPrefix + 'as_oc/machine/info/tc31b/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_0_1=g_navNode_2_1_0_0.addNode('211004','Specifications',ssUrlPrefix + 'as_oc/machine/info/tc31b/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_0_2=g_navNode_2_1_0_0.addNode('211005','Example',ssUrlPrefix + 'as_oc/machine/info/tc31b/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_1=g_navNode_2_1_0.addNode('211006','TC-20A',ssUrlPrefix + 'as_oc/machine/info/tc20a/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_1_0=g_navNode_2_1_0_1.addNode('211007','Feature',ssUrlPrefix + 'as_oc/machine/info/tc20a/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_1_1=g_navNode_2_1_0_1.addNode('211008','Specifications',ssUrlPrefix + 'as_oc/machine/info/tc20a/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_1_2=g_navNode_2_1_0_1.addNode('211009','Example',ssUrlPrefix + 'as_oc/machine/info/tc20a/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_2=g_navNode_2_1_0.addNode('211010','TC-22B/TC-22B-O',ssUrlPrefix + 'as_oc/machine/info/tc22b/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_2_0=g_navNode_2_1_0_2.addNode('211011','Feature',ssUrlPrefix + 'as_oc/machine/info/tc22b/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_2_1=g_navNode_2_1_0_2.addNode('211012','Specifications',ssUrlPrefix + 'as_oc/machine/info/tc22b/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_2_2=g_navNode_2_1_0_2.addNode('211013','Example',ssUrlPrefix + 'as_oc/machine/info/tc22b/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_3=g_navNode_2_1_0.addNode('211014','TC-31AN',ssUrlPrefix + 'as_oc/machine/info/tc31an/index.htm');
g_navNode_2_1_0_3_0=g_navNode_2_1_0_3.addNode('211015','Feature',ssUrlPrefix + 'as_oc/machine/info/tc31an/feature/index.htm');
g_navNode_2_1_0_3_1=g_navNode_2_1_0_3.addNode('211016','Specifications',ssUrlPrefix + 'as_oc/machine/info/tc31an/spec/index.htm');
g_navNode_2_1_0_3_2=g_navNode_2_1_0_3.addNode('211017','Example',ssUrlPrefix + 'as_oc/machine/info/tc31an/sample/index.htm');
g_navNode_2_1_0_4=g_navNode_2_1_0.addNode('211018','TC-32B QT/FT',ssUrlPrefix + 'as_oc/machine/info/tc32b/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_4_0=g_navNode_2_1_0_4.addNode('211019','Feature',ssUrlPrefix + 'as_oc/machine/info/tc32b/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_4_1=g_navNode_2_1_0_4.addNode('211020','Specifications',ssUrlPrefix + 'as_oc/machine/info/tc32b/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_4_2=g_navNode_2_1_0_4.addNode('211021','Example',ssUrlPrefix + 'as_oc/machine/info/tc32b/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_5=g_navNode_2_1_0.addNode('211022','TC-R2A',ssUrlPrefix + 'as_oc/machine/info/tcr2a/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_5_0=g_navNode_2_1_0_5.addNode('211023','Feature',ssUrlPrefix + 'as_oc/machine/info/tcr2a/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_5_1=g_navNode_2_1_0_5.addNode('211024','Specifications',ssUrlPrefix + 'as_oc/machine/info/tcr2a/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_5_2=g_navNode_2_1_0_5.addNode('211025','Example',ssUrlPrefix + 'as_oc/machine/info/tcr2a/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_6=g_navNode_2_1_0.addNode('211026','TC-S2A/TC-S2A-O',ssUrlPrefix + 'as_oc/machine/info/tcs2a_s2ao/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_6_0=g_navNode_2_1_0_6.addNode('211027','Feature',ssUrlPrefix + 'as_oc/machine/info/tcs2a_s2ao/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_6_1=g_navNode_2_1_0_6.addNode('211028','Specifications',ssUrlPrefix + 'as_oc/machine/info/tcs2a_s2ao/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_6_2=g_navNode_2_1_0_6.addNode('211029','Example',ssUrlPrefix + 'as_oc/machine/info/tcs2a_s2ao/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_7=g_navNode_2_1_0.addNode('211030','TC-S2B-S',ssUrlPrefix + 'as_oc/machine/info/tcs2b_s2bo/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_7_0=g_navNode_2_1_0_7.addNode('211031','Feature',ssUrlPrefix + 'as_oc/machine/info/tcs2b_s2bo/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_7_1=g_navNode_2_1_0_7.addNode('211032','Specifications',ssUrlPrefix + 'as_oc/machine/info/tcs2b_s2bo/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_7_2=g_navNode_2_1_0_7.addNode('211033','Example',ssUrlPrefix + 'as_oc/machine/info/tcs2b_s2bo/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_8=g_navNode_2_1_0.addNode('211034','TC-S2C/TC-S2C-O/TC-S2C-S',ssUrlPrefix + 'as_oc/machine/info/tcs2c/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_8_0=g_navNode_2_1_0_8.addNode('211035','Feature',ssUrlPrefix + 'as_oc/machine/info/tcs2c/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_8_1=g_navNode_2_1_0_8.addNode('211036','Specifications',ssUrlPrefix + 'as_oc/machine/info/tcs2c/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_8_2=g_navNode_2_1_0_8.addNode('211037','Example',ssUrlPrefix + 'as_oc/machine/info/tcs2c/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_9=g_navNode_2_1_0.addNode('211038','HS-70A',ssUrlPrefix + 'as_oc/machine/info/hs70a/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_9_0=g_navNode_2_1_0_9.addNode('211039','Feature',ssUrlPrefix + 'as_oc/machine/info/hs70a/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_9_1=g_navNode_2_1_0_9.addNode('211040','Specifications',ssUrlPrefix + 'as_oc/machine/info/hs70a/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_10=g_navNode_2_1_0.addNode('211057','TC-32BN QT',ssUrlPrefix + 'as_oc/machine/info/tc32bn/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_10_0=g_navNode_2_1_0_10.addNode('211058','Feature',ssUrlPrefix + 'as_oc/machine/info/tc32bn/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_10_1=g_navNode_2_1_0_10.addNode('211059','Specifications',ssUrlPrefix + 'as_oc/machine/info/tc32bn/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_0_10_2=g_navNode_2_1_0_10.addNode('211060','Example',ssUrlPrefix + 'as_oc/machine/info/tc32bn/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_2_1_1=g_navNode_2_1.addNode('211041','Machine Tool Solution',ssUrlPrefix + 'as_oc/machine/isolution/index.htm');
g_navNode_2_1_2=g_navNode_2_1.addNode('211042','Product Movie',ssUrlPrefix + 'as_oc/machine/movie/index.htm','title==Brother \x7c Machine Tools \x7c Movie');
g_navNode_2_1_3=g_navNode_2_1.addNode('211043','Event',ssUrlPrefix + 'as_oc/machine/show/index.htm');
g_navNode_2_1_3_0=g_navNode_2_1_3.addNode('211044','Event1',ssUrlPrefix + 'as_oc/machine/show/jimtof2006/index.htm');
g_navNode_2_1_3_1=g_navNode_2_1_3.addNode('211045','Event2',ssUrlPrefix + 'as_oc/machine/show/20070124/index.htm');
g_navNode_2_1_3_2=g_navNode_2_1_3.addNode('211046','Event3',ssUrlPrefix + 'as_oc/machine/show/20070126/index.htm');
g_navNode_2_1_4=g_navNode_2_1.addNode('211047','News',ssUrlPrefix + 'as_oc/machine/news/index.htm');
g_navNode_2_1_4_0=g_navNode_2_1_4.addNode('211048','ND-Marketing',ssUrlPrefix + 'as_oc/machine/news/ndmarketing/index.htm');
g_navNode_2_1_4_1=g_navNode_2_1_4.addNode('211049','Freon',ssUrlPrefix + 'as_oc/machine/news/freon/index.htm');
g_navNode_2_1_5=g_navNode_2_1.addNode('211050','What is a CNC Tapping center ?',ssUrlPrefix + 'as_oc/machine/cnc/index.htm','title==Brother \x7c Machine Tools \x7c CNC Tapping Center');
g_navNode_2_1_5_0=g_navNode_2_1_5.addNode('211051','Machining performance',ssUrlPrefix + 'as_oc/machine/cnc/performance/index.htm');
g_navNode_2_1_5_1=g_navNode_2_1_5.addNode('211052','Machining example index',ssUrlPrefix + 'as_oc/machine/cnc/sample/index.htm');
g_navNode_2_1_6=g_navNode_2_1.addNode('211053','What is a Wire EDM ?',ssUrlPrefix + 'as_oc/machine/wire/index.htm','title==Brother \x7c Machine Tools \x7c Wire');
g_navNode_2_1_7=g_navNode_2_1.addNode('211054','Function',ssUrlPrefix + 'as_oc/machine/function/index.htm','Custom_Body_Attribute==class\x3d\"bg-white\"','add_property==  \x3clink href\x3d\"http\x3a//www.brother.com/library/websites/www.com/layout/ism/css/common/import_tmp.css\" type\x3d\"text/css\" rel\x3d\"stylesheet\" /\x3e\\x0a','title==Brother \x7c Machine Tools \x7c Function');
g_navNode_2_1_8=g_navNode_2_1.addNode('211055','Contact',ssUrlPrefix + 'as_oc/machine/contact/index.htm','title==Brother \x7c Machine Tools \x7c Contacts');
g_navNode_2_1_9=g_navNode_2_1.addNode('211056','Dealer',ssUrlPrefix + 'as_oc/machine/Dealer/index.htm','title==Brother \x7c Machine Tools \x7c Dealers');
g_navNode_2_2=g_navNode_2.addNode('210100','Industrial Embroidery Machines',ssUrlPrefix + 'as_oc/embroidery/index.htm');
g_navNode_2_2_0=g_navNode_2_2.addNode('210102','FAQ',ssUrlPrefix + 'as_oc/embroidery/faq/index.htm');
g_navNode_2_2_0_0=g_navNode_2_2_0.addNode('210105','Machine',ssUrlPrefix + 'as_oc/embroidery/faq/machine/index.htm');
g_navNode_2_2_0_1=g_navNode_2_2_0.addNode('210106','Software',ssUrlPrefix + 'as_oc/embroidery/faq/Software/index.htm');
g_navNode_2_2_1=g_navNode_2_2.addNode('210101','Lineup',ssUrlPrefix + 'as_oc/embroidery/Lineup/index.htm');
g_navNode_2_2_1_0=g_navNode_2_2_1.addNode('210103','Multi Head',ssUrlPrefix + 'as_oc/embroidery/Lineup/lineup1/index.htm');
g_navNode_2_2_1_1=g_navNode_2_2_1.addNode('210104','Software',ssUrlPrefix + 'as_oc/embroidery/Lineup/lineup2/index.htm');
g_navNode_2_3=g_navNode_2.addNode('200001','Contact List',ssUrlPrefix + 'as_oc/contact/index.htm','add_property==\x3cMETA HTTP-EQUIV\x3d\"Refresh\" CONTENT\x3d\"0\x3b URL\x3dhttp\x3a//www.brother.com/html/index.htm\x23africa_asia\"\x3e');
g_navNode_2_3_0=g_navNode_2_3.addNode('200002','Asia/Pacific',ssUrlPrefix + 'as_oc/contact/asiapacific/index.htm','add_property==\x3clink rel\x3d\"stylesheet\" href\x3d\"http\x3a//www.brother.com/library/websites/www.com/top/css/import.css\" type\x3d\"text/css\" /\x3e\\x0a','title==Contact List \x7c Asia/Pacific ');
g_navNode_2_3_1=g_navNode_2_3.addNode('200003','Middle East / Africa',ssUrlPrefix + 'as_oc/contact/mea/index.htm','add_property==\x3clink rel\x3d\"stylesheet\" href\x3d\"http\x3a//www.brother.com/library/websites/www.com/top/css/import.css\" type\x3d\"text/css\" /\x3e');
g_navNode_3=g_navNode_Root.addNode('220000','Europe',ssUrlPrefix + 'europe/index.htm','add_property==\x3cMETA HTTP-EQUIV\x3d\"Refresh\" CONTENT\x3d\"0\x3b URL\x3dhttp\x3a//www.brother.com/global_eu.html\"\x3e');
g_navNode_3_0=g_navNode_3.addNode('220001','Industrial Sewing Machine',ssUrlPrefix + 'europe/ism/index.htm','title==Industrial Sewing machine \x7c Brother');
g_navNode_3_0_0=g_navNode_3_0.addNode('220027','Showcase',ssUrlPrefix + 'europe/ism/example/index.htm','title==Showcase \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_0_0=g_navNode_3_0_0.addNode('220028','Beijing Aimer Lingerie Co., Ltd.',ssUrlPrefix + 'europe/ism/example/aimer/index.htm','title==Showcase \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_0_1=g_navNode_3_0_0.addNode('220029','Fuqing Xiangxing Handbag Co., Ltd.',ssUrlPrefix + 'europe/ism/example/highland/index.htm','title==Showcase \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_0_2=g_navNode_3_0_0.addNode('220031','China Chaojie Garment Co., Ltd.',ssUrlPrefix + 'europe/ism/example/chaojie/index.htm','title==Showcase \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_1=g_navNode_3_0.addNode('220013','Software Upgrade',ssUrlPrefix + 'europe/ism/upgrade/index.htm','title==PS-300B Upgrade program  \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_1_0=g_navNode_3_0_1.addNode('220014','Procedures',ssUrlPrefix + 'europe/ism/upgrade/procedure/index.htm','title==PS-300B Upgrade program  \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2=g_navNode_3_0.addNode('220004','Lineup',ssUrlPrefix + 'europe/ism/lock/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_0=g_navNode_3_0_2.addNode('220017','Blind Stitch Sewing Machine',ssUrlPrefix + 'europe/ism/lock/blind/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_1=g_navNode_3_0_2.addNode('220016','Overedge Sewing Machine',ssUrlPrefix + 'europe/ism/lock/overedge/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_2=g_navNode_3_0_2.addNode('220015','Double Chain Stitch Sewing Machine',ssUrlPrefix + 'europe/ism/lock/chain/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_3=g_navNode_3_0_2.addNode('220012','Sewing Data Programming Software',ssUrlPrefix + 'europe/ism/lock/software/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_4=g_navNode_3_0_2.addNode('220011','Progurammable Electronic Pattern Sewing Machine',ssUrlPrefix + 'europe/ism/lock/e_pattern/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_5=g_navNode_3_0_2.addNode('220010','Bar Tacking Machine / Pattern Tacking Machine',ssUrlPrefix + 'europe/ism/lock/tacking/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_6=g_navNode_3_0_2.addNode('220009','Button Attaching Machine',ssUrlPrefix + 'europe/ism/lock/button_attach/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_7=g_navNode_3_0_2.addNode('220008','Buttonhole Sewing Machine',ssUrlPrefix + 'europe/ism/lock/buttonhole/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_8=g_navNode_3_0_2.addNode('220007','Zigzag Lock Stitch Sewing Machine',ssUrlPrefix + 'europe/ism/lock/zigzag/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_9=g_navNode_3_0_2.addNode('220006','Twin Needle Split Needle Bar Lock Stitch Sewing Machine',ssUrlPrefix + 'europe/ism/lock/twin_split/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_2_10=g_navNode_3_0_2.addNode('220005','Twin Needle Lock Stitch Sewing Machine',ssUrlPrefix + 'europe/ism/lock/twin_lock/index.htm','title==Product lineup \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_3=g_navNode_3_0.addNode('220002','message',ssUrlPrefix + 'europe/ism/message/index.htm','title==Message \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_0_4=g_navNode_3_0.addNode('220018','Update History',ssUrlPrefix + 'europe/ism/whatsnew/index.htm','title==What\\x27s New \x7c Industrial Sewing machine \x7c Brother');
g_navNode_3_1=g_navNode_3.addNode('221000','Machine Tools',ssUrlPrefix + 'europe/machine/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0=g_navNode_3_1.addNode('221001','info',ssUrlPrefix + 'europe/machine/info/index.htm');
g_navNode_3_1_0_0=g_navNode_3_1_0.addNode('221002','TC-31B',ssUrlPrefix + 'europe/machine/info/tc31b/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_0_0=g_navNode_3_1_0_0.addNode('221003','Feature',ssUrlPrefix + 'europe/machine/info/tc31b/feature/index.htm');
g_navNode_3_1_0_0_1=g_navNode_3_1_0_0.addNode('221004','Specifications',ssUrlPrefix + 'europe/machine/info/tc31b/spec/index.htm');
g_navNode_3_1_0_0_2=g_navNode_3_1_0_0.addNode('221005','Example',ssUrlPrefix + 'europe/machine/info/tc31b/sample/index.htm');
g_navNode_3_1_0_1=g_navNode_3_1_0.addNode('221006','TC-20A',ssUrlPrefix + 'europe/machine/info/tc20a/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_1_0=g_navNode_3_1_0_1.addNode('221007','Feature',ssUrlPrefix + 'europe/machine/info/tc20a/feature/index.htm');
g_navNode_3_1_0_1_1=g_navNode_3_1_0_1.addNode('221008','Specifications',ssUrlPrefix + 'europe/machine/info/tc20a/spec/index.htm');
g_navNode_3_1_0_1_2=g_navNode_3_1_0_1.addNode('221009','Example',ssUrlPrefix + 'europe/machine/info/tc20a/sample/index.htm');
g_navNode_3_1_0_2=g_navNode_3_1_0.addNode('221010','TC-22B/TC-22B-O',ssUrlPrefix + 'europe/machine/info/tc22b/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_2_0=g_navNode_3_1_0_2.addNode('221011','Feature',ssUrlPrefix + 'europe/machine/info/tc22b/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_2_1=g_navNode_3_1_0_2.addNode('221012','Specifications',ssUrlPrefix + 'europe/machine/info/tc22b/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_2_2=g_navNode_3_1_0_2.addNode('221013','Example',ssUrlPrefix + 'europe/machine/info/tc22b/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_3=g_navNode_3_1_0.addNode('221014','TC-31AN',ssUrlPrefix + 'europe/machine/info/tc31an/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_3_0=g_navNode_3_1_0_3.addNode('221015','Feature',ssUrlPrefix + 'europe/machine/info/tc31an/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_3_1=g_navNode_3_1_0_3.addNode('221016','Specifications',ssUrlPrefix + 'europe/machine/info/tc31an/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_3_2=g_navNode_3_1_0_3.addNode('221017','Example',ssUrlPrefix + 'europe/machine/info/tc31an/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_4=g_navNode_3_1_0.addNode('221018','TC-32B QT/FT',ssUrlPrefix + 'europe/machine/info/tc32b/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_4_0=g_navNode_3_1_0_4.addNode('221019','Feature',ssUrlPrefix + 'europe/machine/info/tc32b/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_4_1=g_navNode_3_1_0_4.addNode('221020','Specifications',ssUrlPrefix + 'europe/machine/info/tc32b/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_4_2=g_navNode_3_1_0_4.addNode('221021','Example',ssUrlPrefix + 'europe/machine/info/tc32b/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_5=g_navNode_3_1_0.addNode('221022','TC-R2A',ssUrlPrefix + 'europe/machine/info/tcr2a/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_5_0=g_navNode_3_1_0_5.addNode('221023','Feature',ssUrlPrefix + 'europe/machine/info/tcr2a/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_5_1=g_navNode_3_1_0_5.addNode('221024','Specifications',ssUrlPrefix + 'europe/machine/info/tcr2a/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_5_2=g_navNode_3_1_0_5.addNode('221025','Example',ssUrlPrefix + 'europe/machine/info/tcr2a/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_6=g_navNode_3_1_0.addNode('221026','TC-S2A/TC-S2A-O',ssUrlPrefix + 'europe/machine/info/tcs2a_s2ao/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_6_0=g_navNode_3_1_0_6.addNode('221027','Feature',ssUrlPrefix + 'europe/machine/info/tcs2a_s2ao/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_6_1=g_navNode_3_1_0_6.addNode('221028','Specifications',ssUrlPrefix + 'europe/machine/info/tcs2a_s2ao/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_6_2=g_navNode_3_1_0_6.addNode('221029','Example',ssUrlPrefix + 'europe/machine/info/tcs2a_s2ao/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_7=g_navNode_3_1_0.addNode('221030','TC-S2B-S',ssUrlPrefix + 'europe/machine/info/tcs2b_s2bo/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_7_0=g_navNode_3_1_0_7.addNode('221031','Feature',ssUrlPrefix + 'europe/machine/info/tcs2b_s2bo/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_7_1=g_navNode_3_1_0_7.addNode('221032','Specifications',ssUrlPrefix + 'europe/machine/info/tcs2b_s2bo/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_7_2=g_navNode_3_1_0_7.addNode('221033','Example',ssUrlPrefix + 'europe/machine/info/tcs2b_s2bo/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_8=g_navNode_3_1_0.addNode('221034','TC-S2C/TC-S2C-O/TC-S2C-S',ssUrlPrefix + 'europe/machine/info/tcs2c/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_8_0=g_navNode_3_1_0_8.addNode('221035','Feature',ssUrlPrefix + 'europe/machine/info/tcs2c/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_8_1=g_navNode_3_1_0_8.addNode('221036','Specifications',ssUrlPrefix + 'europe/machine/info/tcs2c/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_8_2=g_navNode_3_1_0_8.addNode('221037','Example',ssUrlPrefix + 'europe/machine/info/tcs2c/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_9=g_navNode_3_1_0.addNode('221038','HS-70A',ssUrlPrefix + 'europe/machine/info/hs70a/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_9_0=g_navNode_3_1_0_9.addNode('221039','Feature',ssUrlPrefix + 'europe/machine/info/hs70a/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_9_1=g_navNode_3_1_0_9.addNode('221040','Specifications',ssUrlPrefix + 'europe/machine/info/hs70a/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_10=g_navNode_3_1_0.addNode('221057','TC-32BN QT',ssUrlPrefix + 'europe/machine/info/tc32bn/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_10_0=g_navNode_3_1_0_10.addNode('221058','Feature',ssUrlPrefix + 'europe/machine/info/tc32bn/feature/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_10_1=g_navNode_3_1_0_10.addNode('221059','Specifications',ssUrlPrefix + 'europe/machine/info/tc32bn/spec/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_0_10_2=g_navNode_3_1_0_10.addNode('221060','Example',ssUrlPrefix + 'europe/machine/info/tc32bn/sample/index.htm','title==Brother \x7c Machine Tools');
g_navNode_3_1_1=g_navNode_3_1.addNode('221041','Machine Tool Solution',ssUrlPrefix + 'europe/machine/isolution/index.htm');
g_navNode_3_1_2=g_navNode_3_1.addNode('221042','Product Movie',ssUrlPrefix + 'europe/machine/movie/index.htm','title==Brother \x7c Machine Tools \x7c Movie');
g_navNode_3_1_3=g_navNode_3_1.addNode('221043','Event',ssUrlPrefix + 'europe/machine/show/index.htm');
g_navNode_3_1_3_0=g_navNode_3_1_3.addNode('221044','Event1',ssUrlPrefix + 'europe/machine/show/jimtof2006/index.htm');
g_navNode_3_1_3_1=g_navNode_3_1_3.addNode('221045','Event2',ssUrlPrefix + 'europe/machine/show/20070124/index.htm');
g_navNode_3_1_3_2=g_navNode_3_1_3.addNode('221046','Event3',ssUrlPrefix + 'europe/machine/show/20070126/index.htm');
g_navNode_3_1_4=g_navNode_3_1.addNode('221047','News',ssUrlPrefix + 'europe/machine/news/index.htm');
g_navNode_3_1_4_0=g_navNode_3_1_4.addNode('221048','ND-Marketing',ssUrlPrefix + 'europe/machine/news/ndmarketing/index.htm');
g_navNode_3_1_4_1=g_navNode_3_1_4.addNode('221049','Freon',ssUrlPrefix + 'europe/machine/news/freon/index.htm');
g_navNode_3_1_5=g_navNode_3_1.addNode('221050','What is a CNC Tapping center ?',ssUrlPrefix + 'europe/machine/cnc/index.htm','title==Brother \x7c Machine Tools \x7c CNC Tapping Center');
g_navNode_3_1_5_0=g_navNode_3_1_5.addNode('221051','Machining performance',ssUrlPrefix + 'europe/machine/cnc/performance/index.htm');
g_navNode_3_1_5_1=g_navNode_3_1_5.addNode('221052','Machining example index',ssUrlPrefix + 'europe/machine/cnc/sample/index.htm');
g_navNode_3_1_6=g_navNode_3_1.addNode('221053','What is a Wire EDM ?',ssUrlPrefix + 'europe/machine/wire/index.htm','title==Brother \x7c Machine Tools \x7c Wire EDM');
g_navNode_3_1_7=g_navNode_3_1.addNode('221054','Function',ssUrlPrefix + 'europe/machine/function/index.htm','Custom_Body_Attribute==class\x3d\"bg-white\"','add_property== \x3clink href\x3d\"http\x3a//www.brother.com/library/websites/www.com/layout/ism/css/common/import_tmp.css\" type\x3d\"text/css\" rel\x3d\"stylesheet\" /\x3e\\x0a','title==Brother \x7c Machine Tools ');
g_navNode_3_1_8=g_navNode_3_1.addNode('221055','Contact',ssUrlPrefix + 'europe/machine/contact/index.htm','title==Brother \x7c Machine Tools \x7c Contacts');
g_navNode_3_1_9=g_navNode_3_1.addNode('221056','Dealer',ssUrlPrefix + 'europe/machine/dealer/index.htm','title==Brother \x7c Machine Tools \x7c Dealers');
g_navNode_3_2=g_navNode_3.addNode('220100','Industrial Embroidery Machines',ssUrlPrefix + 'europe/embroidery/index.htm');
g_navNode_3_2_0=g_navNode_3_2.addNode('220101','Lineup',ssUrlPrefix + 'europe/embroidery/lineup/index.htm');
g_navNode_3_2_0_0=g_navNode_3_2_0.addNode('220103','Multi Head',ssUrlPrefix + 'europe/embroidery/lineup/lineup1/index.htm');
g_navNode_3_2_0_1=g_navNode_3_2_0.addNode('220104','Software',ssUrlPrefix + 'europe/embroidery/lineup/lineup2/index.htm');
g_navNode_3_2_1=g_navNode_3_2.addNode('220102','FAQ',ssUrlPrefix + 'europe/embroidery/faq/index.htm');
g_navNode_3_2_1_0=g_navNode_3_2_1.addNode('220105','Machine',ssUrlPrefix + 'europe/embroidery/faq/machine/index.htm');
g_navNode_3_2_1_1=g_navNode_3_2_1.addNode('220106','Software',ssUrlPrefix + 'europe/embroidery/faq/software/index.htm');
g_navNode_4=g_navNode_Root.addNode('100001','copyright',ssUrlPrefix + 'copyright/index.htm','add_property==\x3clink rel\x3d\"stylesheet\" href\x3d\"/library/websites/www.com/top/css/version4.css\" type\x3d\"text/css\"\x3e\\x0a\x3clink rel\x3d\"stylesheet\" href\x3d\"/library/websites/www.com/top/css/import.css\" type\x3d\"text/css\" media\x3d\"screen,print\"\x3e','keywords==Brother, brother, MFC, Multi-Functions Center, printer, facsimile, fax, sewing, sewing machine, embroidery, stamp, stampcreator, p-touch, labeling, machine tool, typewriter, word processor, IR, investor, environment, procurement, Brother Industries,Ltd.','title==Notes on Brother WWW Server');
g_navNode_8=g_navNode_Root.addNode('100003','Site Map and Index Pages',ssUrlPrefix + 'html/index.htm','add_property==\x3clink rel\x3d\"stylesheet\" href\x3d\"/library/websites/www.com/top/css/version4.css\" type\x3d\"text/css\"\x3e\\x0a\x3clink rel\x3d\"stylesheet\" href\x3d\"/library/websites/www.com/top/css/import.css\" type\x3d\"text/css\" media\x3d\"screen,print\"\x3e','keywords==Brother, brother, MFC, Multi-Functions Center, printer, facsimile, fax, sewing, sewing machine, embroidery, stamp, stampcreator, p-touch, labeling, machine tool, typewriter, word processor, IR, investor, environment, procurement, Brother Industries,Ltd.','title==Site Map \x7c Global Brother');
g_navNode_8_0=g_navNode_8.addNode('100004','Software Download',ssUrlPrefix + 'html/download/index.htm','title==Software Download \x7c Global Brother');
g_navNode_8_1=g_navNode_8.addNode('100005','Product Support',ssUrlPrefix + 'html/product_support/index.htm','title==Product Support \x7c Global Brother');
g_navNode_8_2=g_navNode_8.addNode('100006','Product Registration',ssUrlPrefix + 'html/registration/index.htm','title==Product Registration \x7c Global Brother');
g_navNode_8_3=g_navNode_8.addNode('100007','Corporate Information',ssUrlPrefix + 'html/corpinfo/index.htm','title==Corporate Information \x7c Global Brother');
g_navNode_8_4=g_navNode_8.addNode('100008','America',ssUrlPrefix + 'html/america/index.htm','title==North / South / Central America \x7c Global Brother');
g_navNode_8_5=g_navNode_8.addNode('100009','Europe',ssUrlPrefix + 'html/europe/index.htm','title==Europe \x7c Global Brother');
g_navNode_8_6=g_navNode_8.addNode('100010','Middle East / Africa',ssUrlPrefix + 'html/africa/index.htm','title==Middle East / Africa \x7c Global Brother');
g_navNode_8_7=g_navNode_8.addNode('100011','Asia / Oceania',ssUrlPrefix + 'html/asia/index.htm','title==Middle East / Africa \x7c Global Brother');
