/////////////////////////////////////////////////////////////////////////////
// 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('vfa2_ss_root','Home',ssUrlPrefix + 'index.htm',null);
g_navNode_1=g_navNode_Root.addNode('vfa2_ss_home','Home',ssUrlPrefix + 'personal/index.htm','description==Visit Vodafone for the latest mobile phones and discover mobile internet, mobile broadband, mobile email, music and much more.','keywords==vodafone, personal','title==Vodafone Australia\x3a Mobile Phones, Internet, Broadband \x26 Email');
g_navNode_1_0=g_navNode_1.addNode('vfa2_ss_blackberrystorm','BlackBerry Storm',ssUrlPrefix + 'personal/blackberrystorm/index.htm','keywords==BlackBerry storm, smartphone, smart phone, register','title==BlackBerry Storm');
g_navNode_1_2=g_navNode_1.addNode('vfa2_ss_p_iphone','iPhone',ssUrlPrefix + 'personal/iphone/index.htm','description==Get the Apple\xaeiPhone\u2122 3G with fast 3G wireless technology, GPS mapping, support for enterprise features like Microsoft Exchange \x26 the new App Store. Find out more','title==iPhone 3G\x3a The iPhone you\\x27ve been waiting for\x3a Vodafone Australia');
g_navNode_1_2_0=g_navNode_1_2.addNode('vfa2_ss_p_iphonefeatures','Features',ssUrlPrefix + 'personal/iphone/features/index.htm','title==Features');
g_navNode_1_2_0_0=g_navNode_1_2_0.addNode('vfa2_ss_p_iphonephone','Phone',ssUrlPrefix + 'personal/iphone/features/phone/index.htm','title==Phone');
g_navNode_1_2_0_1=g_navNode_1_2_0.addNode('vfa2_ss_p_ipod','iPod',ssUrlPrefix + 'personal/iphone/features/ipod/index.htm','title==iPod');
g_navNode_1_2_0_2=g_navNode_1_2_0.addNode('vfa2_ss_p_internet','Internet',ssUrlPrefix + 'personal/iphone/features/internet/index.htm','title==Internet');
g_navNode_1_2_0_3=g_navNode_1_2_0.addNode('vfa2_ss_p_visual_voicemail','Visual Voicemail',ssUrlPrefix + 'personal/iphone/features/visualvoicemail/index.htm','title==iPhone 3G - Visual Voicemail - Vodafone Australia');
g_navNode_1_2_0_4=g_navNode_1_2_0.addNode('vfa2_ss_p_techspec','Tech Spec',ssUrlPrefix + 'personal/iphone/features/techspec/index.htm','title==Tech Spec');
g_navNode_1_2_3=g_navNode_1_2.addNode('vfa2_cdf_p_iphone_pricing_new','Pricing',ssUrlPrefix + 'personal/iphone/pricing/index.htm');
g_navNode_1_2_4=g_navNode_1_2.addNode('vfa2_ss_p_iphonebuy','Buy',ssUrlPrefix + 'personal/iphone/buy/index.htm','title==Buy');
g_navNode_1_2_5=g_navNode_1_2.addNode('vfa2_ss_p_iphonehelpsupport','Help \x26 Support',ssUrlPrefix + 'personal/iphone/helpsupport/index.htm','title==Help Support');
g_navNode_1_2_6=g_navNode_1_2.addNode('vfa2_cdf_p_iphone_terms_cond','Terms \x26 Conditions',ssUrlPrefix + 'personal/iphone/termsconditions/index.htm');
g_navNode_1_3=g_navNode_1.addNode('vfa2_ss_p_plans','Contract',ssUrlPrefix + 'personal/plans/index.htm','description==Get the mobile phone plan that works for you\x21 Vodafone Australia offers you the choice of Prepay, Contract or Month to Month plans. Find out more','title==Mobile Phone Plans, Caps \x26 Contacts\x3a Vodafone Australia');
g_navNode_1_3_0=g_navNode_1_3.addNode('vfa2_ss_p_joiningvodafone','Joining Vodafone',ssUrlPrefix + 'personal/plans/joiningvodafone/index.htm','title==Joining Vodafone');
g_navNode_1_3_0_0=g_navNode_1_3_0.addNode('vfa2_ss_p_morereasonstoswitch','Reasons to Switch',ssUrlPrefix + 'personal/plans/joiningvodafone/morereasonstoswitch/index.htm','title==Reasons to Switch');
g_navNode_1_3_1=g_navNode_1_3.addNode('vfa2_cdf_p_unlimited_cap','Vodafone Unlimited Cap',ssUrlPrefix + 'personal/plans/vodafoneunlimitedcap/index.htm','title==Vodafone Unlimited Cap - Plans - Vodafone Australia');
g_navNode_1_3_2=g_navNode_1_3.addNode('vfa2_ss_p_contract','Contract Caps',ssUrlPrefix + 'personal/plans/contract/index.htm','description==Sign up on a mobile cap from Vodafone Australia and you could enjoy heaps of extras including Unlimited Free Weekends to other Vodafone mobiles. Find out more','title==Mobile Contracts\x3a Handsets, Internet, iPhone \x26 Sim Only Caps');
g_navNode_1_3_2_0=g_navNode_1_3_2.addNode('vfa2_cdf_p_contract_caps','Vodafone Contract Caps',ssUrlPrefix + 'personal/plans/contract/vodafonecontractcaps/index.htm');
g_navNode_1_3_2_0_0=g_navNode_1_3_2_0.addNode('vfa2_cdf_voda_$29_Cap_details','Vodafone \x2429 Cap',ssUrlPrefix + 'personal/plans/contract/vodafonecontractcaps/vodafone\x2429cap/index.htm','title==Vodafone \x2429 Cap');
g_navNode_1_3_2_0_1=g_navNode_1_3_2_0.addNode('vfa2_cdf_p_$49_cap_details','Vodafone \x2449 Cap',ssUrlPrefix + 'personal/plans/contract/vodafonecontractcaps/vodafone\x2449cap/index.htm','title==Vodafone \x2449 Cap');
g_navNode_1_3_2_0_2=g_navNode_1_3_2_0.addNode('vfa2_cdf_p_$69_cap_details','Vodafone \x2469 Cap',ssUrlPrefix + 'personal/plans/contract/vodafonecontractcaps/vodafone\x2469cap/index.htm','title==Vodafone \x2469 Cap');
g_navNode_1_3_2_0_3=g_navNode_1_3_2_0.addNode('vfa2_cdf_p_$79_vod_cap_details','Vodafone \x2479 Cap',ssUrlPrefix + 'personal/plans/contract/vodafonecontractcaps/vodafone\x2479cap/index.htm','title==Vodafone \x2479 Cap');
g_navNode_1_3_2_0_4=g_navNode_1_3_2_0.addNode('vfa2_cdf_f_$99_cap_details','Vodafone \x2499 Cap',ssUrlPrefix + 'personal/plans/contract/vodafonecontractcaps/vodafone\x2499cap/index.htm','title==Vodafone \x2499 Cap');
g_navNode_1_3_2_1=g_navNode_1_3_2.addNode('vfa2_cdf_p_sim_only_contract','Vodafone SIM Only Contract Caps',ssUrlPrefix + 'personal/plans/contract/vodafonesimonlycontractcaps/index.htm');
g_navNode_1_3_2_1_0=g_navNode_1_3_2_1.addNode('vfa2_cdf_p_$20_sim_only_cap','\x2420 SIM Only Cap',ssUrlPrefix + 'personal/plans/contract/vodafonesimonlycontractcaps/20simonlycap/index.htm','title==\x2420 SIM Only Cap');
g_navNode_1_3_2_1_1=g_navNode_1_3_2_1.addNode('vfa2_cdf_p_$35_cap_sim_only','\x2435 SIM Only Cap',ssUrlPrefix + 'personal/plans/contract/vodafonesimonlycontractcaps/35simonlycap/index.htm','title==\x2435 SIM Only Cap');
g_navNode_1_3_2_1_2=g_navNode_1_3_2_1.addNode('vfa2_cdf_p_$55_cap_sim_only','\x2455 SIM Only Cap',ssUrlPrefix + 'personal/plans/contract/vodafonesimonlycontractcaps/55simonlycap/index.htm','title==\x2455 SIM Only Cap');
g_navNode_1_3_4=g_navNode_1_3.addNode('vfa2_ss_p_cnmobrepaymentplan','Mobile Payment Plan',ssUrlPrefix + 'personal/plans/mobilerepaymentplan/index.htm','title==Mobile Payment Plan');
g_navNode_1_3_4_0=g_navNode_1_3_4.addNode('vfa2_ss_p_mpptc','Terms and Conditions',ssUrlPrefix + 'personal/plans/mobilerepaymentplan/termsandconditions/index.htm','title==Terms and Conditions');
g_navNode_1_3_5=g_navNode_1_3.addNode('vfa2_ss_p_changeplans','Want to Change Plans?',ssUrlPrefix + 'personal/plans/changeplans/index.htm','title==Want to Change Plans?');
g_navNode_1_3_6=g_navNode_1_3.addNode('vfa2_p_cdf_terms_conditions','Terms and Conditions',ssUrlPrefix + 'personal/plans/termsandconditions/index.htm','title==Terms and Conditions');
g_navNode_1_4=g_navNode_1.addNode('vfa2_ss_p_prepaid-mobile','Prepaid',ssUrlPrefix + 'personal/prepaid-mobile/index.htm','title==Vodafone Plans - Prepaid');
g_navNode_1_4_0=g_navNode_1_4.addNode('vfa2_ss_p_prepaid_flexi_caps','Flexi Caps',ssUrlPrefix + 'personal/prepaid-mobile/flexicaps/index.htm','title==Flexi Caps - Vodafone Australia');
g_navNode_1_4_1=g_navNode_1_4.addNode('vfa2_ss_prepaid_txt_talk','TXT \x26 Talk Recharge',ssUrlPrefix + 'personal/prepaid-mobile/txtandtalk/index.htm','title==TXT \x26 Talk Recharge - Vodafone Australia');
g_navNode_1_4_2=g_navNode_1_4.addNode('vfa2_ss_prepaid_365_day','365 Day Recharge',ssUrlPrefix + 'personal/prepaid-mobile/365day/index.htm','title==365 Day Recharge - Vodafone Australia');
g_navNode_1_4_3=g_navNode_1_4.addNode('vfa2_ss_p_spend_flex_credit','How You Can Spend Your Flexible Credit',ssUrlPrefix + 'personal/prepaid-mobile/spendflexiblecredit/index.htm','title==Flexible Credit - Vodafone Australia');
g_navNode_1_4_4=g_navNode_1_4.addNode('vfa2_ss_p_prepaid_recharge','Recharge Made Easy',ssUrlPrefix + 'personal/prepaid-mobile/recharge/index.htm','title==Recharge Made Easy - Vodafone Australia');
g_navNode_1_4_4_0=g_navNode_1_4_4.addNode('vfa2_ss_p_paypal_recharge','Recharge With PayPal',ssUrlPrefix + 'personal/prepaid-mobile/recharge/paypalrecharge/index.htm');
g_navNode_1_4_5=g_navNode_1_4.addNode('vfa2_ss_p_prepaid_notification','Customer Notification',ssUrlPrefix + 'personal/prepaid-mobile/customernotification/index.htm','title==Prepaid Customer Notification - Vodafone Australia');
g_navNode_1_4_6=g_navNode_1_4.addNode('vfa2_cdf_pp_terms_conditions','Terms and Conditions',ssUrlPrefix + 'personal/prepaid-mobile/termsandconditions/index.htm','title==Terms and Conditions');
g_navNode_1_5=g_navNode_1.addNode('vfa2_ss_p_services','Services',ssUrlPrefix + 'personal/services/index.htm','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,coverage,roaming,messaging,insurance,PXT,MMS,directory assistance,1223,SMS,TXT','title==Services - Vodafone Australia');
g_navNode_1_5_0=g_navNode_1_5.addNode('vfa2_ss_p_123assist','123 \'Ask us Anything\' \x26 Directory Assistance',ssUrlPrefix + 'personal/services/123assist/index.htm','description==With Vodafone 123 - the anything \x26 everything number and 1223 - the directory service assistance number , you\\x27ll never be stuck for an answer again. Just dial the numbers and we\\x27ll do everything we can to help you.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,directory assistance,1223,123,directory service','title==123 \\x27Ask us Anything\\x27 \x26 Directory Assistance');
g_navNode_1_5_0_0=g_navNode_1_5_0.addNode('vfa2_ss_p_123','123 \'Ask us Anything\'',ssUrlPrefix + 'personal/services/123assist/123/index.htm','description==Want to get the current score in the footy? Get help with directions to find your way home? Hear the reviews on that new restaurant around the corner? Check the surf report? Vodafone\u2019s 123 \u2018ask us anything\u2019 service provides you with everything you need to know to keep your life in order and stay ahead of the game.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,da,directory assistance,football score,directions,surf report,trivia,weather,movie times,trivia,international directory assistance,','title==123 - \\x27Ask us Anything\\x27 - Services - Vodafone Australia');
g_navNode_1_5_0_1=g_navNode_1_5_0.addNode('vfa2_ss_p_1223','1223 Directory Assistance',ssUrlPrefix + 'personal/services/123assist/1223/index.htm','description==If you need a number fast, you need 1223. Our fast, efficient directory assistance service, answered by a real operator \x28not a machine\x29, 24 hours a day, 7 days a week. ','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,directory assistance,da,','title==1223 Directory Assistance - Services - Vodafone Australia');
g_navNode_1_5_2=g_navNode_1_5.addNode('vfa2_ss_p_messagechat','Messaging',ssUrlPrefix + 'personal/services/messaging/index.htm','description==Stay in touch with a complete range of messaging services from Vodafone Australia. TXT, PXT, Voicemail, CALLScreen, Web2TXT, SMS. Find out more','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,TXT,SMS,PXT,MMS,Voicemail,voice mail,paging,page','title==Mobile Messaging\x3a TXT, PXT, Voicemail, CALLScreen, Web2TXT, SMS');
g_navNode_1_5_2_0=g_navNode_1_5_2.addNode('vfa2_ss_p_voicemail','Voicemail',ssUrlPrefix + 'personal/services/messaging/voicemail/index.htm','description==Welcome to Voicemail service. Manage your messages quickly and easily. ','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,voicemail, voice mail,message bank,','title==Voicemail - Services - Vodafone Australia');
g_navNode_1_5_2_1=g_navNode_1_5_2.addNode('vfa2_ss_p_callscreen','CALLscreen',ssUrlPrefix + 'personal/services/messaging/callscreen/index.htm','description==CALLscreen is just like having your own personal greeting and paging service when you can\\x27t take calls. ','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,paging,pager,','title==CALLscreen - Services - Vodafone Australia');
g_navNode_1_5_2_2=g_navNode_1_5_2.addNode('vfa2_ss_p_txtservices','TXT Services',ssUrlPrefix + 'personal/services/messaging/txt/index.htm','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,TXT,SMS,Premium TXT,Premium SMS,TXT Chat,SMS chat,TXT updates, SMS updates,','title==Mobile Messaging\x3a TXT Services');
g_navNode_1_5_2_3=g_navNode_1_5_2.addNode('vfa2_ss_p_pxtservices','PXT\x26reg\x3b Services',ssUrlPrefix + 'personal/services/messaging/pxt/index.htm','description==PXT\xae is a picture message, also known as an MMS message. PXT\xae lets you send and receive picture messages containing photos, images, sound files, animations, and text from your mobile. With PXT\xae you have the freedom to be creative.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,MMS,picture messaging,','title==PXT\x26reg\x3b Services - Vodafone Australia');
g_navNode_1_5_2_4=g_navNode_1_5_2.addNode('vfa2_ss_p_winliveemail','Windows Live Hotmail\x26reg\x3b SMS',ssUrlPrefix + 'personal/services/messaging/liveemail/index.htm','description==Stay connected to the people most important to you. Access your Hotmail account when you\\x27re on the move. Vodafone Australia subscribers can receive Windows Live Hotmail\xae, via TXT messaging. So you can have your Hotmail Inbox on your mobile.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,MMS,TXT,text message,','title==Windows Live Hotmail\x26reg\x3b SMS - Services - Vodafone Australia');
g_navNode_1_5_2_5=g_navNode_1_5_2.addNode('vfa2_ss_p_yahooemail','Yahoo IM \x26 Email by SMS',ssUrlPrefix + 'personal/services/messaging/yahooemail/index.htm','description==Yahoo\x21 Messenger for SMS is no longer available just via the PC. Vodafone customers can now send messages to anyone logged on to Yahoo\x21 Messenger for SMS. You don\\x27t even need a WAP phone - just a Vodafone Mobile connected phone that can send TXT messages.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,MMS,TXT,text message,','title==Yahoo IM \x26 Email by SMS - Services - Vodafone Australia');
g_navNode_1_5_3=g_navNode_1_5.addNode('vfa2_ss_p_servinsurance','Vodafone Cover me Mobile Insurance',ssUrlPrefix + 'personal/services/insurance/index.htm','description==Vodafone Cover Me Mobile Insurance protects you against damage, loss and theft of Your handset, handset accessories and unauthorised calls. Find out more','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,phone insurance, mobile insurance,','title==Mobile Insurance\x3a Insure your phone with Vodafone Australia');
g_navNode_1_5_3_0=g_navNode_1_5_3.addNode('vfa2_ss_p_protectingyourphone','Protecting Your Phone',ssUrlPrefix + 'personal/services/insurance/protectinyourphone/index.htm','description==These days, You can\\x27t afford to be without Your mobile. But could You afford to replace or repair it if You lose or damage it? Fortunately, Vodafone Cover me Mobile Insurance is a monthly renewable insurance policy that can help protect You against the costs of replacing or repairing Your mobile.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,phone insurance, mobile insurance,','title==Protecting Your Phone - Services - Vodafone Australia');
g_navNode_1_5_4=g_navNode_1_5.addNode('vfa2_ss_p_coverage','Coverage',ssUrlPrefix + 'personal/services/coverage/index.htm','description==One in every four mobile users on the planet is connected with Vodafone. The Vodafone Australia Network covers 99.53\x25 of Australia\\x27s metro areas.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,vodafone coverage, vodafone 3G coverage, vodafone coverage areas','title==Mobile Coverage Range in Australia\x3a Vodafone Australia');
g_navNode_1_5_4_0=g_navNode_1_5_4.addNode('vfa2_ss_p_coveragemaps','Coverage Maps',ssUrlPrefix + 'personal/services/coverage/maps/index.htm','description==Vodafone\\x27s GSM \x282G\x29 network covers up to 94.52\x25\x2a of the Australian population. Our GPRS \x282.5G\x29 network covers 92\x25 of the places you live and work in Australia. Our 3G broadband network covers metropolitan areas in Sydney, Central Coast, Melbourne, Canberra, Brisbane, the Gold Coast and Sunshine Coast, Adelaide and Perth, plus all major international airports, and is constantly expanding. ','iFrameHeight==1100','iFrameURL==https\x3a//coapps.vodafone.com.au/coverage/','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,vodafone coverage, vodafone 3G coverage, vodafone coverage areas','title==Coverage Maps - Services - Vodafone Australia');
g_navNode_1_5_4_1=g_navNode_1_5_4.addNode('vfa2_ss_p_hwycoverage','Outstanding Highway Coverage',ssUrlPrefix + 'personal/services/coverage/outstandinghighwaycoverage/index.htm','description==A big mission for a big country. One of our missions is to continually improve and extend our Australian mobile network. As part of a Commonwealth Government initiative, called \"Mobile Phones on Highways\", Vodafone improved coverage on 9,963km of major highways across Australia.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,vodafone coverage, vodafone 3G coverage, vodafone coverage areas,highway coverage,','title==Outstanding Highway Coverage - Services - Vodafone Australia');
g_navNode_1_5_4_2=g_navNode_1_5_4.addNode('vfa2_ss_p_nationalroaming','National Roaming',ssUrlPrefix + 'personal/services/coverage/nationalroaming/index.htm','description==Vodafone has a service that now extends our mobile network even further throughout rural and regional Australia. It\\x27s called National Roaming. National Roaming is a service that sees us working with other network providers, to deliver you better mobile phone coverage in regional areas of Victoria and Tasmania.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,vodafone coverage, vodafone 3G coverage, vodafone coverage areas,highway coverage,national roaming, roaming,','title==National Roaming - Services - Vodafone Australia');
g_navNode_1_5_5=g_navNode_1_5.addNode('internationalroamingv2','International Roaming',ssUrlPrefix + 'personal/services/roaming/index.htm','description==Now Vodafone has made it even easier to take your mobile overseas, with a global network that covers many of the places you\u2019re likely to go. ','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,roaming,global roaming,international roaming,','title==International Roaming\x3a Using your mobile overseas\x3a Vodafone');
g_navNode_1_5_5_0=g_navNode_1_5_5.addNode('settingupforoverseas','Setting Up For Overseas',ssUrlPrefix + 'personal/services/roaming/settingup/index.htm','description==What do I need to know before I roam? ','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,roaming,global roaming,international roaming,','title==Setting Up For Overseas - Services - Vodafone Australia');
g_navNode_1_5_5_1=g_navNode_1_5_5.addNode('Vfa_ext_ss_p_RoamingOnAcctCtct','Roaming For Postpay',ssUrlPrefix + 'personal/services/roaming/postpay/index.htm','description==Vodafone Traveller is our great new price plan for using your mobile overseas. We\u2019ve split the world into 4 zones, each with a different price structure. Once you\u2019re set up for roaming and have opted in to Vodafone Traveller, just turn on your mobile and we\u2019ll automatically find the right network for you, whether you stay in the same country or travel further afield. ','iFrameHeight==400','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,roaming,global roaming,international roaming,','title==Roaming for Postpay - Services - Vodafone Australia');
g_navNode_1_5_5_2=g_navNode_1_5_5.addNode('roamingforprepaycaps','Roaming For Prepaid Flexi Caps',ssUrlPrefix + 'personal/services/roaming/prepaycaps/index.htm','description==Vodafone Traveller is our great new price plan for using your mobile overseas. We\u2019ve split the world into four zones, each with a different price structure. Just turn on your mobile and we\u2019ll automatically find the right network for you, whether you stay in the same country or travel further afield.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,roaming,global roaming,international roaming,prepay,','title==Roaming for Prepaid Caps - Services - Vodafone Australia');
g_navNode_1_5_5_3=g_navNode_1_5_5.addNode('roamingforprepayplans','Roaming For Prepaid Recharges',ssUrlPrefix + 'personal/services/roaming/prepayplans/index.htm','description==Vodafone Traveller is our great new price plan for using your mobile overseas. We\u2019ve split the world into four zones, each with a different price structure. Just turn on your mobile and we\u2019ll automatically find the right network for you, whether you stay in the same country or travel further afield.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,roaming,global roaming,international roaming,prepay,prepaid,','title==Roaming for Prepaid Plans - Services - Vodafone Australia');
g_navNode_1_5_5_4=g_navNode_1_5_5.addNode('vfa2_ss_p_roamcountries','Roaming Rates By Country',ssUrlPrefix + 'personal/services/roaming/countries/index.htm','description==Keep the convenience and safety of your own mobile phone when you travel with Vodafone World. Vodafone has roaming agreements with over 200 networks around the world','iFrameHeight==650','iFrameURL==http\x3a//vodafoneroaming.production.atwww.com/postpay','keywords==vodafone roaming, vodafone global roaming, global roaming service, global roaming, vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,roaming,global roaming,international roaming,prepay,prepaid,','title==Roaming Rates by Country - Services - Vodafone Australia');
g_navNode_1_5_5_5=g_navNode_1_5_5.addNode('usingvoicemail123otherservices','Using Voicemail, 123 \x26 Other Services',ssUrlPrefix + 'personal/services/roaming/usingvoicemail123otherservices/index.htm','description==As a global company, Vodafone makes it easier for you to stay in contact while travelling overseas. You can use your Vodafone services on many networks around the world, just like you do at home - voicemail, Customer Care, Directory Assistance and 123.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,roaming,global roaming,international roaming,prepay,prepaid,voicemail,directory assistance,','title==Using Voicemail, 123 \x26 Other Services - Services - Vodafone Australia');
g_navNode_1_5_5_6=g_navNode_1_5_5.addNode('vfa2_ssp_usinggprs3gdataos','Using GPRS \x26 3G Data Overseas',ssUrlPrefix + 'personal/services/roaming/usinggprs3gdataoverseas/index.htm','description==With a compatible handset, you can still use Vodafone live\x21, PXT\xae, mobile email devices, a data card or USB modem in many countries.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,roaming,global roaming,international roaming,wireless internet,broadband,gprs,3g data','title==Using GPRS \x26 3G Data Overseas - Services - Vodafone Australia');
g_navNode_1_5_5_7=g_navNode_1_5_5.addNode('vfa2_ss_p_usingmbboos','Using Mobile Broadband Overseas',ssUrlPrefix + 'personal/services/roaming/usingmobilebroadbandoverseas/index.htm','description==Accessing mobile broadband and the internet overseas may be a necessity, but it\u2019s not until you get back home that the full cost is revealed. It can often result in a hefty bill. That\u2019s all set to change with our new Roaming Data Bundles. Available to customers who already have our Mobile Broadband plan for use in Australia','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,roaming,global roaming,international roaming,wireless internet,broadband,gprs,3g data','title==Using Mobile Broadband Overseas - Services - Vodafone Australia');
g_navNode_1_5_6=g_navNode_1_5.addNode('vfa2_ss_p_internationalcalling','International Calling',ssUrlPrefix + 'personal/services/idd/index.htm','description==Vodafone International Calling Rates \x26 Charges. Call family and friends overseas from your mobile on the move, whenever you want. Find out more','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,international calls, IDD,','title==Making International Calls on Your Mobile\x3a Vodafone Australia');
g_navNode_1_7=g_navNode_1.addNode('vfa2_ss_p_mobintlivenew','Mobile Internet \x26 Vodafone live\x21',ssUrlPrefix + 'personal/live/index.htm','description==Go anywhere on your mobile with Mobile Internet \x26 Vodafone live\x21 Browse the web, watch Mobile TV \x26 download tunes. Find out more','title==Mobile Internet \x26 Vodafone live\x21 \x7c Music, TV \x26 Internet ');
g_navNode_1_7_0=g_navNode_1_7.addNode('vfa2_ss_p_aboutintlive','About Mobile Internet \x26 Vodafone live\x21',ssUrlPrefix + 'personal/live/aboutinternetandlive/index.htm','title==About Mobile Internet \x26 Vodafone live\x21');
g_navNode_1_7_2=g_navNode_1_7.addNode('vfa2_cdf_p_mobile_internet','Mobile Internet',ssUrlPrefix + 'personal/live/internet/index.htm','title==Mobile Internet');
g_navNode_1_7_2_0=g_navNode_1_7_2.addNode('vfa2_p_cdf_caps_include_data','Contract Caps that Include Data',ssUrlPrefix + 'personal/live/internet/contractcapsthatincludedata/index.htm','title==Contract Caps that Include Data');
g_navNode_1_7_2_1=g_navNode_1_7_2.addNode('vfa2_cdf_p_ioym_add_on','Internet On Your Mobile Add On',ssUrlPrefix + 'personal/live/internet/internetonyourmobileaddon/index.htm','title==Internet On Your Mobile Add On');
g_navNode_1_7_2_2=g_navNode_1_7_2.addNode('vfa2_cdf_p_pay_go_internet','Pay as you go Mobile Internet',ssUrlPrefix + 'personal/live/internet/payasyougomobileinternet/index.htm','title==Pay as you go Mobile Internet');
g_navNode_1_7_2_3=g_navNode_1_7_2.addNode('vfa2_ss_b_usagecalculator','MB Usage Calculator',ssUrlPrefix + 'personal/live/internet/calculator/index.htm','title==MB Usage Calculator');
g_navNode_1_7_2_4=g_navNode_1_7_2.addNode('vfa2_cdf_p_mobile_favourites','Set Up Mobile Internet Favourites',ssUrlPrefix + 'personal/live/internet/mobilefavourites/index.htm','title==Mobile Favourites');
g_navNode_1_7_3=g_navNode_1_7.addNode('vfa2_cdf_p_internet_email_bb','Internet Email with BlackBerry\xae',ssUrlPrefix + 'personal/live/internetemailwithblackberry/index.htm','title==Internet Email with BlackBerry\xae');
g_navNode_1_7_4=g_navNode_1_7.addNode('vfa2_ss_p_whatisvflive','Vodafone live\x21',ssUrlPrefix + 'personal/live/whatis/index.htm','title==Vodafone live\x21');
g_navNode_1_7_4_0=g_navNode_1_7_4.addNode('vfa2_ss_p_vfalivepricing','Pricing',ssUrlPrefix + 'personal/live/whatis/pricing/index.htm','title==Pricing');
g_navNode_1_7_6=g_navNode_1_7.addNode('vfa2_ss_mtv','MTV',ssUrlPrefix + 'personal/live/mtv/index.htm','title==MTV - Vodafone Australia');
g_navNode_1_7_6_0=g_navNode_1_7_6.addNode('vfa2_cdf_mtv_thelair','The Lair',ssUrlPrefix + 'personal/live/mtv/thelair/index.htm','iFrameHeight==0','title==The Lair - Vodafone Australia');
g_navNode_1_7_6_1=g_navNode_1_7_6.addNode('vfa2_cdf_mtv_snow_jam','Snow Jam',ssUrlPrefix + 'personal/live/mtv/snowjam/index.htm','iFrameHeight==0','title==Snow Jam - Vodafone Australia');
g_navNode_1_7_6_2=g_navNode_1_7_6.addNode('vfa2_cdf_mtv_summer','MTV Summer',ssUrlPrefix + 'personal/live/mtv/mtvsummer/index.htm','iFrameHeight==0','title==MTV Summer - Vodafone Australia');
g_navNode_1_7_6_3=g_navNode_1_7_6.addNode('vfa2_ss_mtvmusicawards','Vodafone MTV Australia Awards',ssUrlPrefix + 'personal/live/mtv/mtvmusicawards/index.htm','iFrameHeight==175','iFrameURL==http\x3a//www.vodafone.com.au/personal/live/mtv/awards-iframe.htm','title==Vodafone MTV Australia Awards - Vodafone Australia');
g_navNode_1_7_6_4=g_navNode_1_7_6.addNode('vfa2_ss_freshclips','Fresh Clips',ssUrlPrefix + 'personal/live/mtv/freshclips/index.htm','iFrameHeight==330','iFrameURL==http\x3a//www.vodafone.com.au/personal/live/mtv/freshclips-player/VodaPlayer.html','title==Fresh Clips - Vodafone Australia');
g_navNode_1_7_6_5=g_navNode_1_7_6.addNode('vfa2_cdf_mtv_top6loaded','Top 6 Loaded',ssUrlPrefix + 'personal/live/mtv/top6loaded/index.htm','iFrameHeight==0','title==Top 6 Loaded - Vodafone Australia');
g_navNode_1_7_6_6=g_navNode_1_7_6.addNode('vfa2_cdf_mtv_evermore','Evermore Surprise Morning Commuters',ssUrlPrefix + 'personal/live/mtv/evermoresurprisemorningcommuters/index.htm','title==Evermore Surprise Morning Commuters - Mobile Internet \x26 Vodafone live\x21 - Vodafone Australia');
g_navNode_1_7_6_7=g_navNode_1_7_6.addNode('vfa2_cdf_p_viptreatment','Vodafone Customers Become Famous for the Evening',ssUrlPrefix + 'personal/live/mtv/vodafonecustomersbecomefamousfortheevening/index.htm','iFrameHeight==300','iFrameURL==http\x3a//www.vodafone.com.au/personal/live/mtv/vodafonecustomersbecomefamousfortheevening/mtv_vip_player.html','title==Vodafone Customers Become Famous for the Evening');
g_navNode_1_7_7=g_navNode_1_7.addNode('vfa2_ss_musicstation','MusicStation',ssUrlPrefix + 'personal/live/musicstation/index.htm','iFrameHeight==345','iFrameURL==http\x3a//www.vodafone.com.au/personal/live/musicstation/musicstation.htm','keywords==music station','title==MusicStation - Vodafone Australia');
g_navNode_1_7_8=g_navNode_1_7.addNode('vfa2_ss_p_vodafonemusicstore','Vodafone Music Store',ssUrlPrefix + 'personal/live/VodafoneMusicStore/index.htm','title==Vodafone Music Store');
g_navNode_1_7_9=g_navNode_1_7.addNode('vfa2_ss_p_mobiletv_2009','Vodafone Mobile TV',ssUrlPrefix + 'personal/live/mobiletv/index.htm','iFrameHeight==0','title==Vodafone Mobile TV - Mobile Internet \x26 Vodafone live\x21 - Vodafone Australia');
g_navNode_1_7_9_0=g_navNode_1_7_9.addNode('vfa2_ss_p_newssports_2009','News \x26 Sports Pack',ssUrlPrefix + 'personal/live/mobiletv/news/index.htm','description==News \x26 Sports Pack','iFrameHeight==340','iFrameURL==http\x3a//www.vodafone.com.au/personal/live/mobiletv/Player01/VodaPlayer.html','keywords==Mobile TV','title==News \x26 Sports Mobile TV Pack - Mobile Internet \x26 Vodafone live\x21 - Vodafone Australia');
g_navNode_1_7_9_1=g_navNode_1_7_9.addNode('vfa2_ss_p_entertainment_2009','Music \x26 Entertainment Pack',ssUrlPrefix + 'personal/live/mobiletv/entertainment/index.htm','description==Music \x26 Entertainment Pack','iFrameHeight==340','iFrameURL==http\x3a//www.vodafone.com.au/personal/live/mobiletv/Player01/VodaPlayer.html','keywords==MobileTV','title==Music \x26 Entertainment Mobile TV Pack - Mobile Internet \x26 Vodafone live\x21 - Vodafone Australia');
g_navNode_1_7_9_3=g_navNode_1_7_9.addNode('vfa2_ss_p_tvondemand_2009','TV on Demand',ssUrlPrefix + 'personal/live/mobiletv/tvondemand/index.htm','title==TV on Demand Mobile TV - Mobile Internet \x26 Vodafone live\x21 - Vodafone Australia');
g_navNode_1_7_9_4=g_navNode_1_7_9.addNode('vfa2_ss_p_freetv_2009','Free TV',ssUrlPrefix + 'personal/live/mobiletv/freetv/index.htm','title==Free TV Mobile TV - Mobile Internet \x26 Vodafone live\x21 - Vodafone Australia');
g_navNode_1_7_9_5=g_navNode_1_7_9.addNode('vfa2_cdf_p_mobile_tv_bumper','Mobile TV Bumper Pack',ssUrlPrefix + 'personal/live/mobiletv/mobiletvbumperpack/index.htm','iFrameHeight==0','title==Bumper Mobile TV Pack - Mobile Internet \x26 Vodafone live\x21 - Vodafone Australia');
g_navNode_1_7_10=g_navNode_1_7.addNode('vfa2_ss_newbestofweb','Best of the Web',ssUrlPrefix + 'personal/live/bestoftheweb/index.htm','title==Best of the Web');
g_navNode_1_7_11=g_navNode_1_7.addNode('vfa2_ss_personalcompass','Vodafone Compass \x28GPS\x29',ssUrlPrefix + 'personal/live/compass/index.htm','title==Vodafone Compass \x28GPS\x29');
g_navNode_1_7_12=g_navNode_1_7.addNode('vfa2_ss_p_pocketlife','Pocket Life',ssUrlPrefix + 'personal/live/pocketlife/index.htm','title==Pocket Life');
g_navNode_1_7_13=g_navNode_1_7.addNode('vfa2_ss_p_chat','Chat',ssUrlPrefix + 'personal/live/chat/index.htm','title==Chat\x3a Vodafone Australia');
g_navNode_1_7_13_0=g_navNode_1_7_13.addNode('vfa2_ss_p_whatischat','What is Chat?',ssUrlPrefix + 'personal/live/chat/whatischat/index.htm','title==What is Chat?');
g_navNode_1_7_13_1=g_navNode_1_7_13.addNode('vfa2_ss_p_playsafeguidelines','Play Safe Guidelines',ssUrlPrefix + 'personal/live/chat/playsafeguidelines/index.htm','title==Play Safe Guidelines');
g_navNode_1_7_13_2=g_navNode_1_7_13.addNode('vfa2_ss_p_tipsparentsfamilies','Tips for Parents \x26 Families',ssUrlPrefix + 'personal/live/chat/tipsforparentsfamilies/index.htm','title==Tips for Parents \x26 Families');
g_navNode_1_7_13_3=g_navNode_1_7_13.addNode('vfa2_ss_p_chat_tc','Terms and Conditions',ssUrlPrefix + 'personal/live/chat/termsconditions/index.htm','title==Terms and Conditions');
g_navNode_1_7_14=g_navNode_1_7.addNode('vfa2_ss_p_ringtoneswallpapers','Ringtones and Wallpapers',ssUrlPrefix + 'personal/live/ringtones/index.htm','title==Ringtones and Wallpapers');
g_navNode_1_7_15=g_navNode_1_7.addNode('vfa2_ss_p_funandgames','Fun and Games',ssUrlPrefix + 'personal/live/fun/index.htm','title==Fun and Games\x3a Vodafone Australia');
g_navNode_1_7_15_0=g_navNode_1_7_15.addNode('vfa2_ss_p_moregames','Games',ssUrlPrefix + 'personal/live/fun/games/index.htm','description==Vodafone live\x21 games','iFrameHeight==340','iFrameURL==http\x3a//www.vodafone.com.au/personal/live/fun/Player/VodaPlayer.html','keywords==games','title==Games');
g_navNode_1_7_15_1=g_navNode_1_7_15.addNode('vfa2_ss_p_pics','Pics and Clips',ssUrlPrefix + 'personal/live/fun/pics/index.htm','title==Pics and Clips');
g_navNode_1_7_16=g_navNode_1_7.addNode('vfa2_ss_p_txtupdates','News, Sport \x26 More',ssUrlPrefix + 'personal/live/newssportandmore/index.htm','title==News, Sport and More\x3a Vodafone Australia');
g_navNode_1_7_16_0=g_navNode_1_7_16.addNode('vfa2_ss_p_sports','Sports Updates',ssUrlPrefix + 'personal/live/newssportandmore/sports/index.htm','title==Sports Updates');
g_navNode_1_7_16_1=g_navNode_1_7_16.addNode('vfa2_ss_p_news','News and Weather',ssUrlPrefix + 'personal/live/newssportandmore/news/index.htm','title==News and Weather');
g_navNode_1_7_16_2=g_navNode_1_7_16.addNode('vfa2_ss_p_entertainmentGuide','Entertainment Guide',ssUrlPrefix + 'personal/live/newssportandmore/entertainment/index.htm','title==Entertainment Guide');
g_navNode_1_7_17=g_navNode_1_7.addNode('vfa2_ss_p_plock','Parental Lock',ssUrlPrefix + 'personal/live/parentallock/index.htm','title==Parental Lock');
g_navNode_1_8=g_navNode_1.addNode('vfa2_ss_p_mobilebroadband','Mobile Broadband',ssUrlPrefix + 'personal/mobilebroadband/index.htm','title==Mobile Broadband');
g_navNode_1_9=g_navNode_1.addNode('vfa2_ss_p_aboutvfa','About Vodafone Australia',ssUrlPrefix + 'personal/aboutvodafone/index.htm','title==About Vodafone Australia');
g_navNode_1_9_0=g_navNode_1_9.addNode('vfa2_ss_p_companyinfo','Company Information',ssUrlPrefix + 'personal/aboutvodafone/companyinfo/index.htm','title==Company Information\x3a Vodafone Australia');
g_navNode_1_9_0_0=g_navNode_1_9_0.addNode('vfa2_ss_p_companyoverview','Company Overview',ssUrlPrefix + 'personal/aboutvodafone/companyinfo/companyoverview/index.htm','title==Company Overview');
g_navNode_1_9_0_1=g_navNode_1_9_0.addNode('vfa2_ss_p_factsfigures','Facts \x26 Figures',ssUrlPrefix + 'personal/aboutvodafone/companyinfo/factsfigures/index.htm','title==Facts \x26 Figures');
g_navNode_1_9_0_2=g_navNode_1_9_0.addNode('vfa2_ss_p_studentinformation','Student  Information',ssUrlPrefix + 'personal/aboutvodafone/companyinfo/studentinformation/index.htm','title==Student  Information');
g_navNode_1_9_1=g_navNode_1_9.addNode('vfa2_ss_p_investorrelations','Investor Relations',ssUrlPrefix + 'personal/aboutvodafone/investorrelations/index.htm','title==Investor Relations');
g_navNode_1_9_2=g_navNode_1_9.addNode('vfa2_ss_p_sponsorship','Sponsorship',ssUrlPrefix + 'personal/aboutvodafone/sponsorship/index.htm','title==Sponsorship\x3a Vodafone Australia');
g_navNode_1_9_2_0=g_navNode_1_9_2.addNode('vfa2_cdf_spon_mtv','MTV',ssUrlPrefix + 'personal/aboutvodafone/sponsorship/mtv/index.htm','title==MTV');
g_navNode_1_9_2_1=g_navNode_1_9_2.addNode('vfa2_ss_p_sponsorship_afl','AFL',ssUrlPrefix + 'personal/aboutvodafone/sponsorship/afl/index.htm','title==AFL');
g_navNode_1_9_2_2=g_navNode_1_9_2.addNode('vfa2_ss_p_spons_motorsport','V8 Supercars',ssUrlPrefix + 'personal/aboutvodafone/sponsorship/motorsport/index.htm','title==Motor Sport');
g_navNode_1_9_2_3=g_navNode_1_9_2.addNode('vfa2_cdf_p_abtvf_formula_one','Formula One',ssUrlPrefix + 'personal/aboutvodafone/sponsorship/mclarenmercedesformulaoneteam/index.htm','title==Vodafone McLaren Mercedes Formula One Team');
g_navNode_1_9_2_4=g_navNode_1_9_2.addNode('vfa2_ss_p_sponsorguidelines','Sponsorship Guidelines',ssUrlPrefix + 'personal/aboutvodafone/sponsorship/sponsorshipguidelines/index.htm','title==Sponsorship Guidelines');
g_navNode_1_9_3=g_navNode_1_9.addNode('vfa2_ss_p_ourbrand','Our Brand',ssUrlPrefix + 'personal/aboutvodafone/ourbrand/index.htm','iFrameHeight==2250','iFrameURL==http\x3a//www.vfsponsorship.com/vca/frame_vca_brand.htm','title==Our Brand');
g_navNode_1_9_4=g_navNode_1_9.addNode('vfa2_ss_a_wod','World of Difference',ssUrlPrefix + 'personal/aboutvodafone/worldofdifference/index.htm','title==World of Difference');
g_navNode_1_9_4_1=g_navNode_1_9_4.addNode('vfa2_ss_a_casestudies','World of Difference Graduates',ssUrlPrefix + 'personal/aboutvodafone/worldofdifference/graduates/index.htm','title==World of Difference Graduates');
g_navNode_1_9_4_2=g_navNode_1_9_4.addNode('vfa2_ss_a_terms','Terms and Conditions',ssUrlPrefix + 'personal/aboutvodafone/worldofdifference/termsandconditions/index.htm','title==Terms and Conditions');
g_navNode_1_9_5=g_navNode_1_9.addNode('vfa2_ss_p_vffoundation','Vodafone Australia Foundation',ssUrlPrefix + 'personal/aboutvodafone/vodafoneaustraliafoundation/index.htm','title==Vodafone Australia Foundation');
g_navNode_1_9_5_0=g_navNode_1_9_5.addNode('vfa2_ss_p_strategy','Vision \x26 Strategy',ssUrlPrefix + 'personal/aboutvodafone/vodafoneaustraliafoundation/strategy/index.htm','title==Strategy');
g_navNode_1_9_5_1=g_navNode_1_9_5.addNode('vfa2_ss_p_existingpartners','Existing Partners',ssUrlPrefix + 'personal/aboutvodafone/vodafoneaustraliafoundation/existingpartners/index.htm','title==Existing Partners');
g_navNode_1_9_5_2=g_navNode_1_9_5.addNode('vfa2_ss_p_worldofdifference','World of Difference',ssUrlPrefix + 'personal/aboutvodafone/vodafoneaustraliafoundation/worldofdifference/index.htm','title==World of Difference');
g_navNode_1_9_5_3=g_navNode_1_9_5.addNode('vfa2_ss_p_vffoundationsapps','Applications for funding',ssUrlPrefix + 'personal/aboutvodafone/vodafoneaustraliafoundation/applications/index.htm','title==Applications for funding');
g_navNode_1_9_6=g_navNode_1_9.addNode('vfa2_ss_p_corpresponsibilty','Corporate Responsibility',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/index.htm','title==Corporate Responsibility');
g_navNode_1_9_6_0=g_navNode_1_9_6.addNode('vfa2_ss_p_crstrategy','Our Corporate Responsibility Strategy',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/crstrategyandgovernancestrategy/index.htm','title==Our Corporate Responsibility Strategy');
g_navNode_1_9_6_1=g_navNode_1_9_6.addNode('10','Our Corporate Responsibility Governance and Accountability',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/OurCorporateResponsibilitygovernanceandaccountability/index.htm','title==Our Corporate Responsibility Governance and Accountability');
g_navNode_1_9_6_2=g_navNode_1_9_6.addNode('vfa2_ss_p_businessprinciples','Our Business Principles',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/businessprinciples/index.htm','title==Our Business Principles');
g_navNode_1_9_6_4=g_navNode_1_9_6.addNode('vfa2_ss_p_ourcrreport','Our Corporate Responsibility Report',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/ourcrreport/index.htm','title==Our Corporate Responsibility Report');
g_navNode_1_9_6_5=g_navNode_1_9_6.addNode('vfa2_ss_p_stakhlderengagement','Stakeholder Engagement',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/stakeholderengagementanddialogue/index.htm','title==Stakeholder Engagement');
g_navNode_1_9_6_7=g_navNode_1_9_6.addNode('12','Our People',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/ourpeople/index.htm','title==Our People');
g_navNode_1_9_6_8=g_navNode_1_9_6.addNode('vfa2_ss_p_consumerinfo','Consumer Information',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/consumerinformation/index.htm','title==Consumer Information');
g_navNode_1_9_6_9=g_navNode_1_9_6.addNode('vfa2_ss_p_supplychainmgt','Supply Chain Management',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/supplychainmanagement/index.htm','title==Supply Chain Management');
g_navNode_1_9_6_10=g_navNode_1_9_6.addNode('vfa2_ext_ss_environment','Environment',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/environment/index.htm','title==Environment');
g_navNode_1_9_6_11=g_navNode_1_9_6.addNode('23','News',ssUrlPrefix + 'personal/aboutvodafone/corporateresponsibility/News/index.htm','title==News');
g_navNode_1_9_7=g_navNode_1_9.addNode('vfa2_ss_newtovodafone','New to Vodafone',ssUrlPrefix + 'personal/aboutvodafone/newtovodafone/index.htm','title==New to Vodafone');
g_navNode_1_9_8=g_navNode_1_9.addNode('vfa2_ss_p_healthsafety','Health \x26 Safety at Vodafone',ssUrlPrefix + 'personal/aboutvodafone/healthsafetyatvodafone/index.htm','title==Health and Safety\x3a Vodafone Australia');
g_navNode_1_9_8_0=g_navNode_1_9_8.addNode('vfa2_ss_p_thebasics','The Basics',ssUrlPrefix + 'personal/aboutvodafone/healthsafetyatvodafone/thebasics/index.htm','title==The Basics');
g_navNode_1_9_8_1=g_navNode_1_9_8.addNode('vfa2_ss_p_hsinductions','H\x26S Inductions for Partners',ssUrlPrefix + 'personal/aboutvodafone/healthsafetyatvodafone/hsinductionsforpartners/index.htm','title==H\x26S Inductions for Partners');
g_navNode_1_9_8_2=g_navNode_1_9_8.addNode('vfa2_ss_p_trackingperformance','Tracking Partner Performance',ssUrlPrefix + 'personal/aboutvodafone/healthsafetyatvodafone/trackingpartnerperformance/index.htm','title==Tracking Partner Performance');
g_navNode_1_9_8_3=g_navNode_1_9_8.addNode('vfa2_ss_p_emerfsafety','EME \x26 RF Safety for Partners',ssUrlPrefix + 'personal/aboutvodafone/healthsafetyatvodafone/emerfsafetyforpartners/index.htm','title==EME \x26 RF Safety for Partners');
g_navNode_1_9_9=g_navNode_1_9.addNode('vfa2_ss_p_mediacentre','Media Centre',ssUrlPrefix + 'personal/aboutvodafone/mediacentre/index.htm','title==Media Centre');
g_navNode_1_9_9_0=g_navNode_1_9_9.addNode('vfa2_ss_p_mediareleases','Media Releases',ssUrlPrefix + 'personal/aboutvodafone/mediacentre/mediareleases/index.htm','title==Media Releases');
g_navNode_1_9_9_1=g_navNode_1_9_9.addNode('vfa2_ss_p_factsheets','Fact Sheets',ssUrlPrefix + 'personal/aboutvodafone/mediacentre/factsheets/index.htm','title==Fact Sheets');
g_navNode_1_9_9_2=g_navNode_1_9_9.addNode('vfa2_ss_p_mediacontact','Media Contact',ssUrlPrefix + 'personal/aboutvodafone/mediacentre/mediacontact/index.htm','title==Media Contact');
g_navNode_1_9_10=g_navNode_1_9.addNode('vfa2_ss_p_mobileadvertising','Mobile Advertising',ssUrlPrefix + 'personal/aboutvodafone/mobileadvertising/index.htm','title==Mobile Advertising\x3a Vodafone Australia');
g_navNode_1_9_10_0=g_navNode_1_9_10.addNode('vfa2_ss_p_welcomemobadvert','Welcome to Mobile Advertising',ssUrlPrefix + 'personal/aboutvodafone/mobileadvertising/welcometomobileadvertising/index.htm','title==Welcome to Mobile Advertising');
g_navNode_1_9_10_1=g_navNode_1_9_10.addNode('vfa2_ss_p_aboutmobadvert','About Mobile Advertising',ssUrlPrefix + 'personal/aboutvodafone/mobileadvertising/aboutmobileadvertising/index.htm','title==About Mobile Advertising');
g_navNode_1_9_10_2=g_navNode_1_9_10.addNode('vfa2_ss_p_findoutmore','Find Out More',ssUrlPrefix + 'personal/aboutvodafone/mobileadvertising/findoutmore/index.htm','title==Find Out More');
g_navNode_1_9_11=g_navNode_1_9.addNode('vfa2_ss_p_careers','Careers',ssUrlPrefix + 'personal/aboutvodafone/careers/index.htm','title==Careers');
g_navNode_1_9_12=g_navNode_1_9.addNode('vfa_ss_p_health_mobile','Health \x26 Mobile Phone Technology',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/index.htm','title==Health \x26 Mobile Phone Technology');
g_navNode_1_9_12_0=g_navNode_1_9_12.addNode('vfa2_ss_p_mobilephoneshealth','Mobile Phones \x26 Health',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/mobilephoneshealth/index.htm','title==Mobile Phones \x26 Health');
g_navNode_1_9_12_1=g_navNode_1_9_12.addNode('vfa2_ss_p_basestations','Base Stations \x26 the Environment',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/basestationstheenvironment/index.htm','title==Base Stations \x26 the Environment');
g_navNode_1_9_12_2=g_navNode_1_9_12.addNode('vfa2_ss_p_basestationsafety','Phones \x26 Base Stations\x3a How is my Safety Assured?',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/phonesbasestationshowismysafetyassured/index.htm','title==Phones \x26 Base Stations\x3a How is my Safety Assured?');
g_navNode_1_9_12_3=g_navNode_1_9_12.addNode('vfa2_ss_p_rfexposurelimits','Public Exposure Limits \x26 Regulation of RF Signals',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/publicexposurelimitsregulationofrfsignals/index.htm','title==Public Exposure Limits \x26 Regulation of RF Signals');
g_navNode_1_9_12_4=g_navNode_1_9_12.addNode('vfa2_ss_p_rfexposurelevels','RF Exposure Levels Near Base Stations',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/rfexposurelevelsnearbasestations/index.htm','title==RF Exposure Levels Near Base Stations');
g_navNode_1_9_12_5=g_navNode_1_9_12.addNode('vfa2_ss_p_mobilephonesystem','How Does the Mobile Phone System Work?',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/howdoesthemobilephonesystemwork/index.htm','title==How Does the Mobile Phone System Work?');
g_navNode_1_9_12_6=g_navNode_1_9_12.addNode('vfa2_ss_p_vfhealthresearch','Is Vodafone Involved in Health Research?',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/isvodafoneinvolvedinhealthresearch/index.htm','title==Is Vodafone Involved in Health Research?');
g_navNode_1_9_12_7=g_navNode_1_9_12.addNode('vfa2_ss_p_responsibledeploy','Our Commitment to Responsible Deployment',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/ourcommitmenttoresponsibledeployment/index.htm','title==Our Commitment to Responsible Deployment');
g_navNode_1_9_12_8=g_navNode_1_9_12.addNode('vfa2_ss_p_monitorrffieldstrgth','Monitoring RF Field Strengths From Base Stations',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/MonitoringRFFieldStrengthsFromBaseStations/index.htm','title==Monitoring RF Field Strengths From Base Stations');
g_navNode_1_9_12_9=g_navNode_1_9_12.addNode('vfa2_ss_p_faqs','FAQs',ssUrlPrefix + 'personal/aboutvodafone/healthmobilephonetechnology/faqs/index.htm','title==FAQs');
g_navNode_1_9_13=g_navNode_1_9.addNode('vfa2_ss_p_legal','Legal',ssUrlPrefix + 'personal/aboutvodafone/legal/index.htm','title==Legal\x3a Vodafone Australia');
g_navNode_1_9_13_0=g_navNode_1_9_13.addNode('vfa2_ss_p_premiumservices','Premium Services',ssUrlPrefix + 'personal/aboutvodafone/legal/premiumservices/index.htm','title==Premium Services');
g_navNode_1_9_13_1=g_navNode_1_9_13.addNode('vfa2_ss_p_privacypolicy','Privacy Policy',ssUrlPrefix + 'personal/aboutvodafone/legal/privacypolicy/index.htm','title==Privacy Policy');
g_navNode_1_9_13_2=g_navNode_1_9_13.addNode('vfa2_ss_p_fairusepolicy','Fair Use Policy',ssUrlPrefix + 'personal/aboutvodafone/legal/fairusepolicy/index.htm','title==Fair Use Policy');
g_navNode_1_9_13_3=g_navNode_1_9_13.addNode('vfa2_ss_p_websitetc','Website Terms \x26 Conditions',ssUrlPrefix + 'personal/aboutvodafone/legal/websitetermsconditions/index.htm','title==Website Terms \x26 Conditions');
g_navNode_1_9_13_4=g_navNode_1_9_13.addNode('vfa2_ss_p_sfoa','Standard Forms of Agreement',ssUrlPrefix + 'personal/aboutvodafone/legal/standardformsofagreement/index.htm','title==Standard Forms of Agreement');
g_navNode_1_9_13_5=g_navNode_1_9_13.addNode('vfa2_ss_p_approvedmobile','Vodafone Approved Standard Mobile Devices',ssUrlPrefix + 'personal/aboutvodafone/legal/vodafoneapprovedstandardmobiledevices/index.htm','title==Vodafone Approved Standard Mobile Devices');
g_navNode_1_9_13_6=g_navNode_1_9_13.addNode('vfa2_ss_p_buschmatesrates','Business Choice Mates Rates',ssUrlPrefix + 'personal/aboutvodafone/legal/businesschoicematesrates/index.htm','title==Business Choice Mates Rates');
g_navNode_1_9_13_7=g_navNode_1_9_13.addNode('vfa2_ss_p_comp_promo','Competitions \x26 Promotions',ssUrlPrefix + 'personal/aboutvodafone/legal/CompetitionsPromotions/index.htm','title==Competitions \x26 Promotions');
g_navNode_1_9_13_8=g_navNode_1_9_13.addNode('vfa2_ss_p_complaintshandling','Complaints Handling Policy',ssUrlPrefix + 'personal/aboutvodafone/legal/complaintshandlingpolicy/index.htm','title==Complaints Handling Policy');
g_navNode_1_9_13_9=g_navNode_1_9_13.addNode('vfa2_ss_p_live!services','Live\x21 Services',ssUrlPrefix + 'personal/aboutvodafone/legal/live\x21services/index.htm','title==Live\x21 Services');
g_navNode_1_9_13_10=g_navNode_1_9_13.addNode('vfa2_ss_compassterms','Vodafone Compass Terms \x26 Conditions',ssUrlPrefix + 'personal/aboutvodafone/legal/compassterms/index.htm','keywords==Vodafone Compass Terms and Conditions, Vodafone Compass \x28GPS\x29 Terms and Conditions','title==Vodafone Compass Terms \x26 Conditions');
g_navNode_1_9_13_11=g_navNode_1_9_13.addNode('vfa2_ss_p_insurance_ploicy','Vodafone Cover me Mobile Insurance Policy',ssUrlPrefix + 'personal/aboutvodafone/legal/vodafonecovermemobileinsurancepolicy/index.htm','title==Vodafone Cover me Mobile Insurance Policy');
g_navNode_1_9_14=g_navNode_1_9.addNode('vfa2_ss_p_disabilityservices','Disability Services',ssUrlPrefix + 'personal/aboutvodafone/disabilityservices/index.htm','title==Disability Services');
g_navNode_1_9_14_0=g_navNode_1_9_14.addNode('vfa2_ss_p_our_commitment','Our Commitment',ssUrlPrefix + 'personal/aboutvodafone/disabilityservices/ourcommitment/index.htm','title==Our Commitment');
g_navNode_1_9_14_1=g_navNode_1_9_14.addNode('vfa2_ss_p_customerservices','Customer Services',ssUrlPrefix + 'personal/aboutvodafone/disabilityservices/Customerservices/index.htm','title==Customer Services');
g_navNode_1_9_14_2=g_navNode_1_9_14.addNode('vfa2_ss_p_chooserightproduct','Choosing the Right Product',ssUrlPrefix + 'personal/aboutvodafone/disabilityservices/choosingtherightproduct/index.htm','title==Choosing the Right Product');
g_navNode_1_9_14_3=g_navNode_1_9_14.addNode('vfa2_ss_p_ds_services','Services',ssUrlPrefix + 'personal/aboutvodafone/disabilityservices/services/index.htm','title==Services');
g_navNode_1_9_14_4=g_navNode_1_9_14.addNode('vf2_ss_p_visualdisabilities','Visual Disabilities',ssUrlPrefix + 'personal/aboutvodafone/disabilityservices/visualdisabilities/index.htm','title==Visual Disabilities');
g_navNode_1_9_14_5=g_navNode_1_9_14.addNode('vfa2_ss_p_hearingimpairment','Hearing Impairment',ssUrlPrefix + 'personal/aboutvodafone/disabilityservices/hearingimpairment/index.htm','title==Hearing Impairment');
g_navNode_1_9_14_6=g_navNode_1_9_14.addNode('vfa2_ss_p_physdisabilities','Physical Disabilities',ssUrlPrefix + 'personal/aboutvodafone/disabilityservices/physicaldisabilities/index.htm','title==Physical Disabilities');
g_navNode_2=g_navNode_Root.addNode('vfa2_ss_onlinestore','Online Store',ssUrlPrefix + 'onlinestore/index.htm','title==Online Store');
g_navNode_3=g_navNode_Root.addNode('vfa2_ss_myvodafone','My Vodafone',ssUrlPrefix + 'myvodafone/index.htm','title==My Vodafone');
g_navNode_4=g_navNode_Root.addNode('vfa2_ss_business','Business Centre',ssUrlPrefix + 'business/index.htm','description==Whatever your business size Vodafone has tailored solutions to suit you. Find out more about our mobile phones, plans \x26 mobile broadband','title==Mobile Business Solutions, Broadband, Internet \x26 Email\x3a Vodafone');
g_navNode_4_0=g_navNode_4.addNode('vfa2_pp_newplans','Business Plans',ssUrlPrefix + 'business/plans/index.htm','description==Choose the perfect mobile plan for your business with Vodafone\x21 Caps and tailored plans for businesses of all sizes. Find out how you can save.','title==Business Mobile Plans \x26 Caps from Vodafone Australia');
g_navNode_4_0_0=g_navNode_4_0.addNode('vfa2_ss_b_joiningvodafone','Get a Perfect Business Fit',ssUrlPrefix + 'business/plans/perfectfit/index.htm','title==Get a Perfect Business Fit');
g_navNode_4_0_1=g_navNode_4_0.addNode('vfa2_cdf_b_unlimited_cap','Vodafone Unlimited Cap',ssUrlPrefix + 'business/plans/vodafoneunlimitedcap/index.htm','title==Vodafone Unlimited Cap - Plans - Vodafone Australia');
g_navNode_4_0_3=g_navNode_4_0.addNode('vfa2_cdf_b_3_months_free_new','3 Months Free\x2b',ssUrlPrefix + 'business/plans/3monthsfree/index.htm','title==3 Months Free');
g_navNode_4_0_4=g_navNode_4_0.addNode('vfa2_ss_b_mybusinesscap','Single Business Cap',ssUrlPrefix + 'business/plans/singlebusinesscap/index.htm','title==Single Business Cap');
g_navNode_4_0_4_0=g_navNode_4_0_4.addNode('vfa2_cdf_b_69_single_bus_cap','\x2469 Single Business Cap',ssUrlPrefix + 'business/plans/singlebusinesscap/69singlebusinesscap/index.htm','title==\x2469 Single Business Cap');
g_navNode_4_0_4_1=g_navNode_4_0_4.addNode('vfa2_cdf_b_79_single_bus_cap','\x2479 Single Business Cap',ssUrlPrefix + 'business/plans/singlebusinesscap/79singlebusinesscap/index.htm','title==\x2479 Single Business Cap');
g_navNode_4_0_4_2=g_navNode_4_0_4.addNode('vfa2_cdf_b_99_single_bus_cap','\x2499 Single Business Cap',ssUrlPrefix + 'business/plans/singlebusinesscap/99singlebusinesscap/index.htm','title==\x2499 Single Business Cap');
g_navNode_4_0_4_7=g_navNode_4_0_4.addNode('vfa2_ss_b_mybc_doingbusinessos','Doing Business Overseas',ssUrlPrefix + 'business/plans/singlebusinesscap/doingbusinessoverseas/index.htm','title==Doing Business Overseas');
g_navNode_4_0_5=g_navNode_4_0.addNode('43','Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/index.htm');
g_navNode_4_0_5_0=g_navNode_4_0_5.addNode('vfa2_cdf_b_99_shared_cap','\x2499 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/99sharedbusinesscap/index.htm','title==\x2499 Shared Business Cap');
g_navNode_4_0_5_1=g_navNode_4_0_5.addNode('vfa2_ss_b_149_shared_bus_cap','\x24149 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/149sharedbusinesscap/index.htm','title==\x24149 Shared Business Cap');
g_navNode_4_0_5_2=g_navNode_4_0_5.addNode('vfa2_cdf_b_229_shared_bus_cap','\x24229 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/229sharedbusinesscap/index.htm','title==\x24229 Shared Business Cap');
g_navNode_4_0_5_3=g_navNode_4_0_5.addNode('vfa2_ss_b_349_shared_bus_cap','\x24349 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/349sharedbusinesscap/index.htm','title==\x24349 Shared Business Cap');
g_navNode_4_0_5_4=g_navNode_4_0_5.addNode('vfa2_ss_b_469_shared_bus_cap','\x24469 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/469sharedbusinesscap/index.htm','title==\x24469 Shared Business Cap');
g_navNode_4_0_5_5=g_navNode_4_0_5.addNode('vfa2_ss_b_599_shared_bus_cap','\x24599 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/599sharedbusinesscap/index.htm','title==\x24599 Shared Business Cap');
g_navNode_4_0_5_6=g_navNode_4_0_5.addNode('vfa2_ss_b_749_shared_bus_cap','\x24749 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/749sharedbusinesscap/index.htm','title==\x24749 Shared Business Cap');
g_navNode_4_0_5_7=g_navNode_4_0_5.addNode('vfa2_ss_b_999_shared_bus_cap','\x24999 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/999sharedbusinesscap/index.htm','title==\x24999 Shared Business Cap');
g_navNode_4_0_5_8=g_navNode_4_0_5.addNode('vfa2_ss_b_1199_shared_bus_cap','\x241199 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/1199sharedbusinesscap/index.htm','title==\x241199 Shared Business Cap');
g_navNode_4_0_5_9=g_navNode_4_0_5.addNode('vfa2_ss_b_1399_shared_bus_cap','\x241399 Shared Business Cap',ssUrlPrefix + 'business/plans/sharedbusinesscap/1399sharedbusinesscap/index.htm','title==\x241399 Shared Business Cap');
g_navNode_4_0_5_10=g_navNode_4_0_5.addNode('vfa2_ss_b_bc_doingbusos','Doing Business Overseas',ssUrlPrefix + 'business/plans/sharedbusinesscap/doingbusinessoverseas/index.htm','title==Doing Business Overseas');
g_navNode_4_0_5_11=g_navNode_4_0_5.addNode('vfa2_ss_b_sh_cap_txt_minute','TXT and Minute Bolt On',ssUrlPrefix + 'business/plans/sharedbusinesscap/txtminutebolton/index.htm','title==TXT and Minute Bolt On');
g_navNode_4_0_6=g_navNode_4_0.addNode('44','Shared Business Cap with BlackBerry',ssUrlPrefix + 'business/plans/sharedbusinesscapwithblackberry/index.htm');
g_navNode_4_0_6_0=g_navNode_4_0_6.addNode('vfa2_cdf_b_sh_bus_cap_249_bb','\x24249 Shared Business Cap with BlackBerry\xae',ssUrlPrefix + 'business/plans/sharedbusinesscapwithblackberry/249sharedbusinesscapwithblackberry/index.htm','title==\x24249 Shared Business Cap with BlackBerry\xae');
g_navNode_4_0_6_1=g_navNode_4_0_6.addNode('vfa2_ss_b_549_shared_cap_black','\x24549 Shared Business Cap with BlackBerry\xae',ssUrlPrefix + 'business/plans/sharedbusinesscapwithblackberry/549sharedbusinesscapwithblackberry/index.htm','title==\x24549 Shared Business Cap with BlackBerry\xae');
g_navNode_4_0_6_2=g_navNode_4_0_6.addNode('vfa2_ss_b_899_shared_cap_black','\x24899 Shared Business Cap with BlackBerry\xae',ssUrlPrefix + 'business/plans/sharedbusinesscapwithblackberry/899sharedbusinesscapwithblackberry/index.htm','title==\x24899 Shared Business Cap with BlackBerry\xae');
g_navNode_4_0_6_3=g_navNode_4_0_6.addNode('vfa2_ss_b_1699_share_cap_black','\x241699 Shared Business Cap with BlackBerry\xae',ssUrlPrefix + 'business/plans/sharedbusinesscapwithblackberry/1699sharedbusinesscapwithblackberry/index.htm','title==\x241699 Shared Business Cap with BlackBerry\xae');
g_navNode_4_0_6_4=g_navNode_4_0_6.addNode('vfa2_ss_b_sh_black_bus_oversea','Doing Business Overseas',ssUrlPrefix + 'business/plans/sharedbusinesscapwithblackberry/doingbusinessoverseas/index.htm','title==Doing Business Overseas');
g_navNode_4_0_6_5=g_navNode_4_0_6.addNode('vfa2_ss_b_txt_minute_bolt_on','TXT and Minute Bolt-On',ssUrlPrefix + 'business/plans/sharedbusinesscapwithblackberry/txtminutebolton/index.htm','title==TXT and Minute Bolt-On');
g_navNode_4_0_7=g_navNode_4_0.addNode('vfa2_ss_b_enterprisechoice','Enterprise Choice',ssUrlPrefix + 'business/plans/enterprisechoice/index.htm','title==Enterprise Choice');
g_navNode_4_0_7_0=g_navNode_4_0_7.addNode('vfa2_ss_b_entch_features','Features',ssUrlPrefix + 'business/plans/enterprisechoice/features/index.htm','title==Features');
g_navNode_4_0_7_1=g_navNode_4_0_7.addNode('vfa2_ss_b_howdoiqualify','How do I Qualify?',ssUrlPrefix + 'business/plans/enterprisechoice/howdoiqualify/index.htm','title==How do I Qualify?');
g_navNode_4_0_7_2=g_navNode_4_0_7.addNode('vfa2_ss_b_entchmoboffice','Enterprise Choice Mobile Office',ssUrlPrefix + 'business/plans/enterprisechoice/enterprisechoicemobileoffice/index.htm','title==Enterprise Choice Mobile Office');
g_navNode_4_0_8=g_navNode_4_0.addNode('vfa2_ss_b_business_one','Vodafone Business One',ssUrlPrefix + 'business/plans/vodafonebusinessone/index.htm');
g_navNode_4_0_9=g_navNode_4_0.addNode('vfa2_ss_b_businesstc','Terms and Conditions',ssUrlPrefix + 'business/plans/TermsandConditions/index.htm','title==Terms and Conditions');
g_navNode_4_0_9_0=g_navNode_4_0_9.addNode('vfa2_ss_b_mbctc','Single Business Cap Terms and Conditions',ssUrlPrefix + 'business/plans/TermsandConditions/singlebusinesscapterms/index.htm','title==Single Business Cap Terms and Conditions');
g_navNode_4_0_9_1=g_navNode_4_0_9.addNode('vfa2_cdf_b_sh_bus_cap_terms','Shared Business Cap Terms and Conditions',ssUrlPrefix + 'business/plans/TermsandConditions/sharedbusinesscapterms/index.htm','title==Shared Business Cap Terms and Conditions');
g_navNode_4_0_9_2=g_navNode_4_0_9.addNode('vfa2_ss_b_entchtc','Enterprise Choice Terms and Conditions',ssUrlPrefix + 'business/plans/TermsandConditions/enterprisechoicetermsandconditions/index.htm','title==Enterprise Choice Terms and Conditions');
g_navNode_4_0_13=g_navNode_4_0.addNode('vfa2_ss_b_casestudies','Case Studies',ssUrlPrefix + 'business/plans/studies/index.htm','title==Case Studies');
g_navNode_4_0_14=g_navNode_4_0.addNode('vfa2_ss_b_iphone','iPhone',ssUrlPrefix + 'business/plans/iphone/index.htm','title==iPhone');
g_navNode_4_0_14_1=g_navNode_4_0_14.addNode('vfa2_ss_b_iphonefeatures','Features',ssUrlPrefix + 'business/plans/iphone/features/index.htm','title==Features');
g_navNode_4_0_14_1_0=g_navNode_4_0_14_1.addNode('vfa2_ss_b_iphonephone','Phone',ssUrlPrefix + 'business/plans/iphone/features/phone/index.htm','title==Phone');
g_navNode_4_0_14_1_1=g_navNode_4_0_14_1.addNode('vfa2_ss_b_iphoneipod','iPod',ssUrlPrefix + 'business/plans/iphone/features/iPod/index.htm','title==iPod');
g_navNode_4_0_14_1_2=g_navNode_4_0_14_1.addNode('vfa2_ss_b_iphoneinternet','Internet',ssUrlPrefix + 'business/plans/iphone/features/internet/index.htm','title==Internet');
g_navNode_4_0_14_1_3=g_navNode_4_0_14_1.addNode('vfa2_ss_b_iphoneenterprisemail','Enterprise Email',ssUrlPrefix + 'business/plans/iphone/features/enterpriseemail/index.htm','title==Enterprise Email');
g_navNode_4_0_14_1_4=g_navNode_4_0_14_1.addNode('vfa2_ss_b_iphonetechspec','Tech Spec',ssUrlPrefix + 'business/plans/iphone/features/techspec/index.htm','title==Tech Spec');
g_navNode_4_0_14_2=g_navNode_4_0_14.addNode('vfa2_ss_b_iphonepricing','Pricing',ssUrlPrefix + 'business/plans/iphone/pricing/index.htm','description==iPhone business pricing plans and Business Cap','title==Pricing');
g_navNode_4_0_14_3=g_navNode_4_0_14.addNode('vfa2_ss_b_helpsupport','Help Support',ssUrlPrefix + 'business/plans/iphone/helpsupport/index.htm','title==Help Support');
g_navNode_4_0_14_4=g_navNode_4_0_14.addNode('vfa2_ss_b_iphone_terms','Terms and Conditions',ssUrlPrefix + 'business/plans/iphone/termsandconditions/index.htm','title==Terms and Conditions');
g_navNode_4_1=g_navNode_4.addNode('vfa2_ss_b_mobileemail','Mobile Email',ssUrlPrefix + 'business/email/index.htm','description==Discover a new way of doing business with Vodafone Mobile Email. Solutions for BlackBerry\xae, Microsoft Exchange, Lotus Domino or Novell GroupWise. ','title==Mobile Email Solutions for Businesses\x3a Vodafone Australia');
g_navNode_4_1_0=g_navNode_4_1.addNode('vfa2_ss_b_aboutmobemail','About Mobile Email',ssUrlPrefix + 'business/email/aboutemail/index.htm','title==About Mobile Email');
g_navNode_4_1_1=g_navNode_4_1.addNode('vfa2_ss_b_mobemailsolutions','Which Solution is Right For You?',ssUrlPrefix + 'business/email/whichsolutionisrightforyou/index.htm','title==Which Solution is Right For You?');
g_navNode_4_1_2=g_navNode_4_1.addNode('vfa2_ss_b_bbenterprisesol','Blackberry Enterprise Solution',ssUrlPrefix + 'business/email/blackberryenterprise/index.htm','title==Blackberry Enterprise Solution');
g_navNode_4_1_2_0=g_navNode_4_1_2.addNode('vfa2_ss_b_bbentsolhandhelds','Handhelds',ssUrlPrefix + 'business/email/blackberryenterprise/handhelds/index.htm','title==Handhelds');
g_navNode_4_1_2_1=g_navNode_4_1_2.addNode('vfa2_ss_b_bbhandhelds','BlackBerry Handhelds',ssUrlPrefix + 'business/email/blackberryenterprise/blackberryhandhelds/index.htm','title==BlackBerry Handhelds');
g_navNode_4_1_2_2=g_navNode_4_1_2.addNode('vfa2_ss_b_bbconnecthandhelds','BlackBerry Connect Handhelds',ssUrlPrefix + 'business/email/blackberryenterprise/blackberryconnecthandhelds/index.htm','title==BlackBerry Connect Handhelds');
g_navNode_4_1_2_3=g_navNode_4_1_2.addNode('vfa2_ss_b_bbentsolpricing','Pricing',ssUrlPrefix + 'business/email/blackberryenterprise/pricing/index.htm','title==Pricing');
g_navNode_4_1_3=g_navNode_4_1.addNode('vfa2_ss_b_windowsmobileemail','Windows Mobile Email Solution',ssUrlPrefix + 'business/email/windowsmobile/index.htm','title==Windows Mobile Email Solution');
g_navNode_4_1_3_0=g_navNode_4_1_3.addNode('vfa2_ss_b_wme_handhelds','Handhelds',ssUrlPrefix + 'business/email/windowsmobile/handhelds/index.htm','title==Handhelds');
g_navNode_4_1_3_1=g_navNode_4_1_3.addNode('vfa2_ss_b_wmemailhandhelds','Windows Mobile Handhelds',ssUrlPrefix + 'business/email/windowsmobile/windowsmobilehandhelds/index.htm','title==Windows Mobile Handhelds');
g_navNode_4_1_3_2=g_navNode_4_1_3.addNode('vfa2_ss_b_micrsftexchhandhelds','Microsoft Exchange Email Compatible Handhelds',ssUrlPrefix + 'business/email/windowsmobile/microsoftexchangeemailcompatiblehandhelds/index.htm','title==Microsoft Exchange Email Compatible Handhelds');
g_navNode_4_1_3_3=g_navNode_4_1_3.addNode('vfa2_ss_b_wme_pricing','Pricing',ssUrlPrefix + 'business/email/windowsmobile/pricing/index.htm','title==Pricing');
g_navNode_4_1_4=g_navNode_4_1.addNode('vfa2_ss_b_bbinternetsolution','BlackBerry Internet Solution',ssUrlPrefix + 'business/email/blackberryinternet/index.htm','title==BlackBerry Internet Solution');
g_navNode_4_1_4_0=g_navNode_4_1_4.addNode('vfa2_ss_b_bbintsolunite','Blackberry\x26reg\x3b Unite\x21 Software',ssUrlPrefix + 'business/email/blackberryinternet/unitesoftware/index.htm','title==Blackberry\x26reg\x3b Unite\x21 Software');
g_navNode_4_1_4_1=g_navNode_4_1_4.addNode('vfa2_ss_b_bbintsolhandhelds','Handhelds',ssUrlPrefix + 'business/email/blackberryinternet/handhelds/index.htm','title==Handhelds');
g_navNode_4_1_4_2=g_navNode_4_1_4.addNode('vfa2_ss_b_blackberryhandhelds','BlackBerry Handhelds',ssUrlPrefix + 'business/email/blackberryinternet/blackberryhandhelds/index.htm','title==BlackBerry Handhelds');
g_navNode_4_1_4_3=g_navNode_4_1_4.addNode('vfa2_ss_b_blackberryconnhandhl','BlackBerry Connect Handhelds',ssUrlPrefix + 'business/email/blackberryinternet/blackberryconnecthandhelds/index.htm','title==BlackBerry Connect Handhelds');
g_navNode_4_1_4_4=g_navNode_4_1_4.addNode('vfa2_ss_b_bbintsolpricing','Pricing',ssUrlPrefix + 'business/email/blackberryinternet/pricing/index.htm','title==Pricing');
g_navNode_4_1_5=g_navNode_4_1.addNode('vfa2_ss_b_handsetinternetemail','Handset Internet Email',ssUrlPrefix + 'business/email/handset/index.htm','title==Handset Internet Email');
g_navNode_4_1_5_0=g_navNode_4_1_5.addNode('vfa2_ss_b_intemail_hanhelds','Handhelds',ssUrlPrefix + 'business/email/handset/handhelds/index.htm','title==Handhelds');
g_navNode_4_1_5_1=g_navNode_4_1_5.addNode('vfa2_ss_b_inteemail_pricing','Pricing',ssUrlPrefix + 'business/email/handset/pricing/index.htm','title==Pricing');
g_navNode_4_1_6=g_navNode_4_1.addNode('vfa2_ss_b_mobemaildownloads','Downloads',ssUrlPrefix + 'business/email/downloads/index.htm','title==Downloads');
g_navNode_4_1_7=g_navNode_4_1.addNode('vfa2_ss_b_mobemail_tandc','Terms and Conditions',ssUrlPrefix + 'business/email/terms/index.htm','title==Terms and Conditions');
g_navNode_4_1_8=g_navNode_4_1.addNode('vfa2_ss_b_mobemailcoverage','Coverage in Australia',ssUrlPrefix + 'business/email/coveragein/index.htm','title==Coverage in Australia');
g_navNode_4_2=g_navNode_4.addNode('vfa2_ss_b_mbbbus','Mobile Broadband',ssUrlPrefix + 'business/mobilebroadband/index.htm','description==Mobilise your business with Vodafone Mobile Broadband. Wireless internet access that lets you work when and where you want\x21 Learn more','title==Mobile Broadband\x3a Wireless Internet Solutions for Businesses');
g_navNode_4_2_0=g_navNode_4_2.addNode('vfa2_ss_whatismbb','What is Mobile Broadband?',ssUrlPrefix + 'business/mobilebroadband/whatismobilebroadband/index.htm','title==What is Mobile Broadband? Vodafone Australia');
g_navNode_4_2_0_0=g_navNode_4_2_0.addNode('vfa2_ss_b_thingsyoushouldknow','Useful information',ssUrlPrefix + 'business/mobilebroadband/whatismobilebroadband/thingsyoushouldknow/index.htm','title==Useful information');
g_navNode_4_2_1=g_navNode_4_2.addNode('vfa2_ss_b_mbbdevices','Mobile Broadband Devices',ssUrlPrefix + 'business/mobilebroadband/mobilebroadbanddevices/index.htm','title==Mobile Broadband Devices');
g_navNode_4_2_1_0=g_navNode_4_2_1.addNode('vfa2_cdf_netbooks','Netbooks',ssUrlPrefix + 'business/mobilebroadband/mobilebroadbanddevices/netbooks/index.htm');
g_navNode_4_2_1_1=g_navNode_4_2_1.addNode('vfa2_ss_b_internetstick','Internet Stick',ssUrlPrefix + 'business/mobilebroadband/mobilebroadbanddevices/internetstick/index.htm','title==Internet Stick');
g_navNode_4_2_1_2=g_navNode_4_2_1.addNode('vfa2_ss_b_datacard','Data Card',ssUrlPrefix + 'business/mobilebroadband/mobilebroadbanddevices/datacard/index.htm','title==Data Card');
g_navNode_4_2_1_3=g_navNode_4_2_1.addNode('vfa2_ss_b_builtin3gbb','Built-in Mobile Broadband',ssUrlPrefix + 'business/mobilebroadband/mobilebroadbanddevices/builtin3gbroadband/index.htm','title==Built-in 3G Broadband');
g_navNode_4_2_1_4=g_navNode_4_2_1.addNode('vfa2_ss_b_mobilemodem','Mobile as a Modem',ssUrlPrefix + 'business/mobilebroadband/mobilebroadbanddevices/mobilemodem/index.htm','title==Mobile as Modem');
g_navNode_4_2_2=g_navNode_4_2.addNode('vfa2_ss_b_whichplan','Mobile Broadband Plans',ssUrlPrefix + 'business/mobilebroadband/whichplanisrightforyou/index.htm','description==Learn more about Vodafone\\x27s range of Mobile Broadband plans. Choose a Mobile Broadband plan for single users, or a plan for multiple users and share your data allowance.','title==Vodafone Australia\x3a Mobile Broadband, Wireless Internet Plans for Business');
g_navNode_4_2_2_0=g_navNode_4_2_2.addNode('vfa2_ss_b_mbbstandaloneplans','Single User Plans',ssUrlPrefix + 'business/mobilebroadband/whichplanisrightforyou/mobilebroadbandstandaloneplans/index.htm','title==Single User Plans');
g_navNode_4_2_2_1=g_navNode_4_2_2.addNode('vfa2_ss_pp_sharedplans','Shared Plans',ssUrlPrefix + 'business/mobilebroadband/whichplanisrightforyou/sharedplans/index.htm','title==Shared Plans');
g_navNode_4_2_3=g_navNode_4_2.addNode('vfa2_ss_b_mbbcoverage','Coverage',ssUrlPrefix + 'business/mobilebroadband/mobilebroadbandcoverage/index.htm','title==Coverage');
g_navNode_4_2_4=g_navNode_4_2.addNode('vfa2_ss_b_mbbtandc','Terms and Conditions',ssUrlPrefix + 'business/mobilebroadband/termsandconditions/index.htm','title==Terms and Conditions');
g_navNode_4_3=g_navNode_4.addNode('vfa2_ss_b_servroaming','International Roaming',ssUrlPrefix + 'business/roaming/index.htm','description==With over 130 countries and growing Vodafone aims to be in all the places you want to do business. Find out how our plans can save you money','title==International Roaming\x3a Global Mobile Business Solutions\x3a Vodafone');
g_navNode_4_3_0=g_navNode_4_3.addNode('vfa2_ss_b_settingupoverseas','Setting up for overseas',ssUrlPrefix + 'business/roaming/settingup/index.htm','title==Setting up for overseas');
g_navNode_4_3_1=g_navNode_4_3.addNode('vfa2_ss_b_traveller','Vodafone Traveller',ssUrlPrefix + 'business/roaming/vodafonetraveller/index.htm','title==Vodafone Traveller');
g_navNode_4_3_2=g_navNode_4_3.addNode('vfa2_ss_b_vfwforpostpay','Vodafone World\x26trade\x3b',ssUrlPrefix + 'business/roaming/postpay/index.htm','title==Vodafone World\x26trade\x3b');
g_navNode_4_3_3=g_navNode_4_3.addNode('vfa2_ss_b_roamcountries','Roaming Rates by Country',ssUrlPrefix + 'business/roaming/countries/index.htm','iFrameHeight==650','iFrameURL==http\x3a//vodafoneroaming.production.atwww.com/postpay','title==Roaming Rates by Country');
g_navNode_4_3_4=g_navNode_4_3.addNode('vfa2_ss_b_usingvoicemailother','Using voicemail, 123 \x26 other services',ssUrlPrefix + 'business/roaming/usingvoicemail123otherservices/index.htm','title==Using voicemail, 123 \x26 other services');
g_navNode_4_3_5=g_navNode_4_3.addNode('vfa2_ss_b_using3ggprsdataos','Using GPRS \x26 3G Data Overseas',ssUrlPrefix + 'business/roaming/using3ggprsdataoverseas/index.htm','title==Using GPRS \x26 3G Data Overseas');
g_navNode_4_3_6=g_navNode_4_3.addNode('vfa2_ss_b_usingmbbos','Using Mobile Broadband Overseas',ssUrlPrefix + 'business/roaming/usingmobilebroadbandoverseas/index.htm','title==Using Mobile Broadband Overseas');
g_navNode_4_4=g_navNode_4.addNode('vfa2_ss_b_services','Other Services',ssUrlPrefix + 'business/services/index.htm','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,coverage,roaming,messaging,insurance,PXT,MMS,directory assistance,1223,SMS,TXT','title==Other Services - Vodafone Australia');
g_navNode_4_4_0=g_navNode_4_4.addNode('vfa2_ss_b_vodafonecompass','Vodafone Compass',ssUrlPrefix + 'business/services/compass/index.htm','description==Vodafone Compass based on Yapp Mobile technology upgrades your BlackBerry\xae Smartphone to an all-in-one multi-purpose device for navigation and travel-related content. It offers a complete navigation experience \u2013 whether driving or walking \u2013 enabling users to find their way quickly and easily using turn-by-turn GPS navigation.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet, gps, navigator, map information, mobile map, navigation service','title==Vodafone Compass - Other Services - Vodafone Australia');
g_navNode_4_4_1=g_navNode_4_4.addNode('vfa2_ss_b_webalive','Business website offer',ssUrlPrefix + 'business/services/webalive/index.htm','description==You know how important the Internet is to grow any business \u2013 but it can be hard to find the time to keep up. That\u2019s why we\u2019ve teamed up with small business web expert WebAlive to offer a choice of packages to get you moving and improve your effectiveness online. ','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,web hosting,hosting,web design, website design,','title==Business website offer - Other Services - Vodafone Australia');
g_navNode_4_4_2=g_navNode_4_4.addNode('vfa2_ss_b_123assist','123 \'Ask us Anything\' \x26 Directory Assistance',ssUrlPrefix + 'business/services/123assist/index.htm','description==With Vodafone 123 - the anything \x26 everything number and 1223 - the directory service assistance number , you\\x27ll never be stuck for an answer again. Just dial the numbers and we\\x27ll do everything we can to help you.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,directory assistance,1223,123,directory service','title==123 \\x27Ask us Anything\\x27 \x26 Directory Assistance - Other Services - Vodafone Australia');
g_navNode_4_4_2_0=g_navNode_4_4_2.addNode('vfa2_ss_b_123','123 \'Ask us Anything\'',ssUrlPrefix + 'business/services/123assist/123/index.htm','description==Want to get the current score in the footy? Get help with directions to find your way home? Hear the reviews on that new restaurant around the corner? Check the surf report? Vodafone\u2019s 123 \u2018ask us anything\u2019 service provides you with everything you need to know to keep your life in order and stay ahead of the game.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,da,directory assistance,football score,directions,surf report,trivia,weather,movie times,trivia,international directory assistance,','title==123 \\x27Ask us Anything\\x27 - Other Services - Vodafone Australia');
g_navNode_4_4_2_1=g_navNode_4_4_2.addNode('vfa2_ss_b_1223','1223 Directory Assistance',ssUrlPrefix + 'business/services/123assist/1223/index.htm','description==Dial 1223 from your Vodafone mobile when you just need a number. You can choose to be Thru connected or have the number sent to you via txt.','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,directory assistance,da,','title==1223 Directory Assistance - Other Services - Vodafone Australia');
g_navNode_4_4_4=g_navNode_4_4.addNode('vfa2_ss_b_message','Messaging',ssUrlPrefix + 'business/services/messaging/index.htm','description==Stay in touch with a complete range of messaging services from Vodafone Australia. TXT, PXT, Voicemail, CALLScreen, Web2TXT, SMS. Find out more','keywords==vodafone,vodaphone,mobile phone,wireless broadband,wireless internet,TXT,SMS,PXT,MMS,Voicemail,voice mail,paging,page','title==Messaging - Other Services - Vodafone Australia');
g_navNode_4_4_4_0=g_navNode_4_4_4.addNode('vfa2_ss_b_voicemail','Voicemail',ssUrlPrefix + 'business/services/messaging/voicemail/index.htm','title==Voicemail');
g_navNode_4_4_4_1=g_navNode_4_4_4.addNode('vfa2_ss_b_callscreen','CALLscreen',ssUrlPrefix + 'business/services/messaging/callscreen/index.htm','title==CALLscreen');
g_navNode_4_4_4_2=g_navNode_4_4_4.addNode('vfa2_ss_b_txtservices','TXT Services',ssUrlPrefix + 'business/services/messaging/txt/index.htm','title==TXT Services');
g_navNode_4_4_4_3=g_navNode_4_4_4.addNode('vfa2_ss_b_pxtservices','PXT\x26reg\x3b Services',ssUrlPrefix + 'business/services/messaging/pxt/index.htm','title==PXT\x26reg\x3b Services');
g_navNode_4_4_4_4=g_navNode_4_4_4.addNode('vfa2_ss_b_winliveemail','Windows Live Hotmail\x26reg\x3b by SMS',ssUrlPrefix + 'business/services/messaging/liveemail/index.htm','title==Windows Live Hotmail\x26reg\x3b by SMS');
g_navNode_4_4_4_5=g_navNode_4_4_4.addNode('vfa2_ss_b_yahooemail','Yahoo IM \x26 Email by SMS',ssUrlPrefix + 'business/services/messaging/yahooemail/index.htm','title==Yahoo IM \x26 Email by SMS');
g_navNode_4_4_5=g_navNode_4_4.addNode('vfa2_ss_b_insurance','Vodafone Cover me Mobile Insurance',ssUrlPrefix + 'business/services/insurance/index.htm','title==Vodafone Cover me Mobile Insurance');
g_navNode_4_4_5_0=g_navNode_4_4_5.addNode('vfa2_ss_b_protectingyourphone','Protecting Your Phone',ssUrlPrefix + 'business/services/insurance/protectingyourphone/index.htm','title==Protecting Your Phone');
g_navNode_4_4_6=g_navNode_4_4.addNode('vfa2_ss_b_coverage','Coverage',ssUrlPrefix + 'business/services/coverage/index.htm','title==Coverage');
g_navNode_4_4_6_0=g_navNode_4_4_6.addNode('vfa2_ss_b_coveragemaps','Coverage Maps',ssUrlPrefix + 'business/services/coverage/maps/index.htm','iFrameHeight==975','iFrameURL==https\x3a//coapps.vodafone.com.au/coverage/','title==Coverage Maps');
g_navNode_4_4_6_1=g_navNode_4_4_6.addNode('vfa2_ss_b_hwycoverage','Outstanding Highway Coverage',ssUrlPrefix + 'business/services/coverage/outstandinghighwaycoverage/index.htm','title==Outstanding Highway Coverage');
g_navNode_4_4_6_2=g_navNode_4_4_6.addNode('vfa2_ss_b_natinonalroaming','National Roaming',ssUrlPrefix + 'business/services/coverage/nationalroaming/index.htm','title==National Roaming');
g_navNode_4_4_7=g_navNode_4_4.addNode('vfa2_ss_b_billing','Corporate Account Online Billing System',ssUrlPrefix + 'business/services/billing/index.htm','title==Corporate Account Online Billing System');
g_navNode_4_4_8=g_navNode_4_4.addNode('vfa2_ss_b_faxmailbox','Fax Mailbox',ssUrlPrefix + 'business/services/fax/index.htm','title==Fax Mailbox');
g_navNode_4_4_9=g_navNode_4_4.addNode('vfa2_ss_b_callcontrol','Call Control',ssUrlPrefix + 'business/services/control/index.htm','title==Call Control');
g_navNode_4_4_10=g_navNode_4_4.addNode('vfa2_ss_b_callconference','CALLConference',ssUrlPrefix + 'business/services/conference/index.htm','title==CALLConference');
g_navNode_4_4_11=g_navNode_4_4.addNode('vfa2_ss_b_governmentservices','Government Services',ssUrlPrefix + 'business/services/gov/index.htm','title==Government Services');
g_navNode_4_4_12=g_navNode_4_4.addNode('vfa2_ss_b_globalenterprise','Vodafone Global Enterprise',ssUrlPrefix + 'business/services/vodafoneglobalenterprise/index.htm','title==Vodafone Global Enterprise');
g_navNode_4_5=g_navNode_4.addNode('vfa2_ss_b_casestudiesnew','Case Studies',ssUrlPrefix + 'business/casestudies/index.htm','title==Case Studies');
g_navNode_4_6=g_navNode_4.addNode('vfa2_ss_b_businessperspectives','Business Sense',ssUrlPrefix + 'business/businesssense/index.htm','title==Business Sense');
g_navNode_4_6_0=g_navNode_4_6.addNode('vfa2_ss_b_trendsandglobalideas','Trends and Global Ideas',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/index.htm','title==Trends and Global Ideas');
g_navNode_4_6_0_1=g_navNode_4_6_0.addNode('vfa2_cdf_b_latest_market_innov','Latest Mobile Marketing Innovations',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/latestmobilemarketinginnovations/index.htm');
g_navNode_4_6_0_2=g_navNode_4_6_0.addNode('vfa2_cdf_b_yammer','Yammer Away\x3a Twitter-Style Messaging in Private',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/yammerawaytwitterstylemessaginginprivate/index.htm');
g_navNode_4_6_0_3=g_navNode_4_6_0.addNode('vfa2_cdf_bus_exploit_hot_desk','Exploiting the Hotdesk and Mobile Worker Trend',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/exploitingthehotdeskandmobileworkertrend/index.htm','title==Exploiting the Hotdesk and Mobile Worker Trend');
g_navNode_4_6_0_4=g_navNode_4_6_0.addNode('vfa2_ss_b_cleangreen','15 Steps to Clean Green Profits',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/cleangreenprofits/index.htm','title==15 Steps to Clean Green Profits');
g_navNode_4_6_0_7=g_navNode_4_6_0.addNode('vfa2_ss_b_newmkts','Cracking New Markets',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/newmarkets/index.htm','title==Cracking New Markets');
g_navNode_4_6_0_8=g_navNode_4_6_0.addNode('Yvfa2_ss_b_businesscost','Your Business Shouldn\'t Cost The Earth',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/businesscost/index.htm','title==Your Business Shouldn\\x27t Cost The Earth');
g_navNode_4_6_0_9=g_navNode_4_6_0.addNode('vfa2_ss_b_openinnovation','Open Innovation - The Customer is the Company',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/openinnovation/index.htm','title==Open Innovation - The Customer is the Company');
g_navNode_4_6_0_10=g_navNode_4_6_0.addNode('vfa2_ss_b_outsourcing','The Outsourcing Trend',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/outsourcing/index.htm','title==The Outsourcing Trend');
g_navNode_4_6_0_11=g_navNode_4_6_0.addNode('vfa2_ss_b_mobilemarketing','Mobile Marketing - Hot Trend or Annoying Fad?',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/mobilemarketing/index.htm','title==Mobile Marketing - Hot Trend or Annoying Fad?');
g_navNode_4_6_0_12=g_navNode_4_6_0.addNode('vfa2_ss_b_beyondfacebook','Beyond Facebook\x3a The Future of Social Networks for Business',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/beyondfacebook/index.htm','title==Beyond Facebook\x3a The Future of Social Networks for Business');
g_navNode_4_6_0_13=g_navNode_4_6_0.addNode('vfa2_ss_b_networktrendunconfer','Networking Trend\x3a The \"Unconference\"',ssUrlPrefix + 'business/businesssense/trendsandglobalideas/networkingtrendtheunconference/index.htm','title==Networking Trend\x3a The \"Unconference\"');
g_navNode_4_6_1=g_navNode_4_6.addNode('vfa2_ss_b_cultureandleadership','Culture and Leadership',ssUrlPrefix + 'business/businesssense/cultureandleadership/index.htm','title==Culture and Leadership');
g_navNode_4_6_1_0=g_navNode_4_6_1.addNode('vfa2_cdf_b_brains_beauty','Brains AND Beauty\x3a the Secret to ModelCo\u2019s Success',ssUrlPrefix + 'business/businesssense/cultureandleadership/brainsandbeautythesecrettomodelcossuccess/index.htm','title==Brains AND Beauty\x3a the Secret to ModelCo\\x27s Success');
g_navNode_4_6_1_1=g_navNode_4_6_1.addNode('vfa2_cdf_b_10_stress_busters','10 Stress-Busters at Work',ssUrlPrefix + 'business/businesssense/cultureandleadership/10stressbustersatwork/index.htm','title==10 Stress-Busters at Work');
g_navNode_4_6_1_2=g_navNode_4_6_1.addNode('vfa2_cdf_b_bras_lipstick_sell','Bras, Like Lipstick, Still Sell Well',ssUrlPrefix + 'business/businesssense/cultureandleadership/braslikelipstickstillsellwell/index.htm','title==Bras, Like Lipstick, Still Sell Well');
g_navNode_4_6_1_3=g_navNode_4_6_1.addNode('vfa2_cdf_bus_animals_at_work','Animals at Work\x3a An HR Trend with Real Benefits',ssUrlPrefix + 'business/businesssense/cultureandleadership/animalsatworkanhrtrendwithrealbenefits/index.htm','title==Animals at Work\x3a An HR Trend with Real Benefits - Business Sense - Vodafone Australia');
g_navNode_4_6_1_4=g_navNode_4_6_1.addNode('vfa2_cdf_bus_bourke_st_bakery','Bourke Street Bakery\x3a The Sweet Smell of Success',ssUrlPrefix + 'business/businesssense/cultureandleadership/bourkestreetbakerythesweetsmellofsuccess/index.htm','title==Bourke Street Bakery\x3a The Sweet Smell of Success - Business Sense - Vodafone Australia');
g_navNode_4_6_1_5=g_navNode_4_6_1.addNode('vfa2_cdf_b_persp_leaders_rise','Leaders Rise and Shine During Crises',ssUrlPrefix + 'business/businesssense/cultureandleadership/leadersriseandshineduringcrises/index.htm','title==Leaders Rise and Shine During Crises');
g_navNode_4_6_1_6=g_navNode_4_6_1.addNode('vfa2_cdf_boss_urge_stop_bully','Bosses Urged to Stop Bullying',ssUrlPrefix + 'business/businesssense/cultureandleadership/bossesurgedtostopbullying/index.htm','title==Bosses Urged to Stop Bullying');
g_navNode_4_6_1_7=g_navNode_4_6_1.addNode('vfa2_ss_b_flexibleworkingnb','Flexible Working - Work in the Hours That Suit You - Nick Bolton',ssUrlPrefix + 'business/businesssense/cultureandleadership/flexibleworkingnickbolton/index.htm','title==Flexible Working - Work in the Hours That Suit You - Nick Bolton');
g_navNode_4_6_1_8=g_navNode_4_6_1.addNode('vfa2_ss_b_flexibleworkingsj','Flexible Working - Work in the Hours That Suit You - Stephen Jones',ssUrlPrefix + 'business/businesssense/cultureandleadership/flexibleworkingstephenjones/index.htm','title==Flexible Working - Work in the Hours That Suit You - Stephen Jones');
g_navNode_4_6_1_9=g_navNode_4_6_1.addNode('vfa2_ss_b_freeweb','Free Web Drives August\'s Success',ssUrlPrefix + 'business/businesssense/cultureandleadership/freeweb/index.htm','title==Free Web Drives August\\x27s Success');
g_navNode_4_6_1_10=g_navNode_4_6_1.addNode('vfa2_ss_b_raiseteamheartrate','Raising Your Team\'s Heart Rate is Good Business',ssUrlPrefix + 'business/businesssense/cultureandleadership/raiseteamheartrate/index.htm','title==Raising Your Team\\x27s Heart Rate is Good Business');
g_navNode_4_6_1_11=g_navNode_4_6_1.addNode('vfa2_ss_b_smallbustemps','Can Temps Help Small to Medium Businesses?',ssUrlPrefix + 'business/businesssense/cultureandleadership/smallbusinesstemps/index.htm','title==Can Temps Help Small to Medium Businesses?');
g_navNode_4_6_1_12=g_navNode_4_6_1.addNode('vfa2_ss_b_hireastar','How to Hire a Star Not a Prima Donna',ssUrlPrefix + 'business/businesssense/cultureandleadership/hireastar/index.htm','title==How to Hire a Star Not a Prima Donna');
g_navNode_4_6_1_13=g_navNode_4_6_1.addNode('vfa2_ss_b_personalwebuse','Banning Personal Web Use Filters Out Trust and Productivity',ssUrlPrefix + 'business/businesssense/cultureandleadership/personalwebuse/index.htm','title==Banning Personal Web Use Filters Out Trust and Productivity');
g_navNode_4_6_1_14=g_navNode_4_6_1.addNode('vfa2_ss_b_maternityleave','Who Should Pay For Maternity Leave?',ssUrlPrefix + 'business/businesssense/cultureandleadership/maternityleave/index.htm','title==Who Should Pay For Maternity Leave?');
g_navNode_4_6_1_15=g_navNode_4_6_1.addNode('vfa2_ss_b_leadershipcoaching','Bosses Need Leadership Coaching Too',ssUrlPrefix + 'business/businesssense/cultureandleadership/leadershipcoaching/index.htm','title==Bosses Need Leadership Coaching Too');
g_navNode_4_6_1_16=g_navNode_4_6_1.addNode('vfa2_ss_b_creativegenius','Hiring a Creative Genius',ssUrlPrefix + 'business/businesssense/cultureandleadership/creativegenius/index.htm','title==Hiring a Creative Genius');
g_navNode_4_6_1_18=g_navNode_4_6_1.addNode('vfa2_ss_b_genypassion','Harnessing Gen Y\'s Passion at Work',ssUrlPrefix + 'business/businesssense/cultureandleadership/genyspassion/index.htm','title==Harnessing Gen Y\\x27s Passion at Work');
g_navNode_4_6_1_19=g_navNode_4_6_1.addNode('vfa2_ss_b_workaholics','Workaholics - Hidden Time Bombs',ssUrlPrefix + 'business/businesssense/cultureandleadership/workaholics/index.htm','title==Workaholics - Hidden Time Bombs');
g_navNode_4_6_1_20=g_navNode_4_6_1.addNode('vfa2_ss_b_parentemployees','Are Parent Employees More Reliable?',ssUrlPrefix + 'business/businesssense/cultureandleadership/parentemployees/index.htm','title==Are Parent Employees More Reliable?');
g_navNode_4_6_1_21=g_navNode_4_6_1.addNode('vfa2_ss_b_feelingcharitable','Feeling Charitable - Make it Count',ssUrlPrefix + 'business/businesssense/cultureandleadership/feelingcharitable/index.htm','title==Feeling Charitable - Make it Count');
g_navNode_4_6_1_22=g_navNode_4_6_1.addNode('vfa2_ss_b_workparentscriticism','Working Parents Cop Criticism',ssUrlPrefix + 'business/businesssense/cultureandleadership/workingparentscopcriticism/index.htm','title==Working Parents Cop Criticism');
g_navNode_4_6_1_23=g_navNode_4_6_1.addNode('vfa2_ss_b_teachstaffphonemanne','Teach Your Staff Phone Manners',ssUrlPrefix + 'business/businesssense/cultureandleadership/teachyourstaffphonemanners/index.htm','title==Teach Your Staff Phone Manners');
g_navNode_4_6_2=g_navNode_4_6.addNode('vfa2_ss_b_techandsolutions','Technology and Solutions',ssUrlPrefix + 'business/businesssense/technologyandsolutions/index.htm','title==Technology and Solutions');
g_navNode_4_6_2_1=g_navNode_4_6_2.addNode('vfa2_cdf_b_persp_get_ahead','Get Ahead While You Can',ssUrlPrefix + 'business/businesssense/technologyandsolutions/getaheadwhileyoucan/index.htm');
g_navNode_4_6_2_2=g_navNode_4_6_2.addNode('vfa2_cdf_b_persp_better_presen','Get to the Point\x3a Better Presentations',ssUrlPrefix + 'business/businesssense/technologyandsolutions/gettothepointbetterpresentations/index.htm','title==Get to the Point\x3a Better Presentations');
g_navNode_4_6_2_3=g_navNode_4_6_2.addNode('vfa2_bus_sense_15_apps_smartph','15 Best Smartphone Apps for Small Business',ssUrlPrefix + 'business/businesssense/technologyandsolutions/15bestsmartphoneappsforsmallbusiness/index.htm','title==15 Best Smartphone Apps for Small Business - Business Sense - Vodafone Australia');
g_navNode_4_6_2_4=g_navNode_4_6_2.addNode('vfa2_ss_b_iphoneandbbbold','Smarter\x3a Apple\x26reg\x3b iPhone 3G\x26trade\x3b and BlackBerry\x26reg\x3b Bold Show Something For Everyone',ssUrlPrefix + 'business/businesssense/technologyandsolutions/iphone3gandblackberrybold/index.htm','title==Smarter\x3a Apple\x26reg\x3b iPhone 3G\x26trade\x3b and BlackBerry\x26reg\x3b Bold Show Something For Everyone');
g_navNode_4_6_2_5=g_navNode_4_6_2.addNode('vfa2_ss_b_smartphoneworking','Get Your New Smartphone Working',ssUrlPrefix + 'business/businesssense/technologyandsolutions/smartphoneworking/index.htm','title==Get Your New Smartphone Working');
g_navNode_4_6_2_6=g_navNode_4_6_2.addNode('vfa2_ss_b_iphonebusiness','Is Apple\x26reg\x3b iPhone\x26trade\x3b Good or Bad For Business?',ssUrlPrefix + 'business/businesssense/technologyandsolutions/iphonebusiness/index.htm','title==Is Apple\x26reg\x3b iPhone\x26trade\x3b Good or Bad for Business?');
g_navNode_4_6_2_8=g_navNode_4_6_2.addNode('vfa2_ss_b_mobiliseworkforce','Mobilise Your Workforce',ssUrlPrefix + 'business/businesssense/technologyandsolutions/mobiliseworkforce/index.htm','title==Mobilise Your Workforce');
g_navNode_4_6_2_9=g_navNode_4_6_2.addNode('vfa2_ss_b_wifimobbb','Wi-Fi Versus Mobile Broadband',ssUrlPrefix + 'business/businesssense/technologyandsolutions/wifivsmobilebroadband/index.htm','title==Wi-Fi Versus Mobile Broadband');
g_navNode_4_6_2_11=g_navNode_4_6_2.addNode('vfa2_ss_b_adoptnewtech','Help Technophobes Adopt New Technology',ssUrlPrefix + 'business/businesssense/technologyandsolutions/adoptnewtechnology/index.htm','title==Help Technophobes Adopt New Technology');
g_navNode_4_6_2_12=g_navNode_4_6_2.addNode('vfa2_ss_b_mobilefriendly','Is Your Business Mobile Friendly?',ssUrlPrefix + 'business/businesssense/technologyandsolutions/mobilefriendly/index.htm','title==Is Your Business Mobile Friendly?');
g_navNode_4_6_2_13=g_navNode_4_6_2.addNode('vfa2_ss_b_wastetimeemail','Stop Wasting Time On Email',ssUrlPrefix + 'business/businesssense/technologyandsolutions/stopwastingtimeonemail/index.htm','title==Stop Wasting Time On Email');
g_navNode_4_6_2_14=g_navNode_4_6_2.addNode('vfa2_ss_b_netbooksreadyforbus','Tech Trend\x3a Netbooks Ready for Business',ssUrlPrefix + 'business/businesssense/technologyandsolutions/netbooksreadyforbusiness/index.htm','title==Tech Trend\x3a Netbooks Ready for Business');
g_navNode_4_6_2_15=g_navNode_4_6_2.addNode('vfa2_ss_b_firstbusinesswebsite','Your First Business Website',ssUrlPrefix + 'business/businesssense/technologyandsolutions/yourfirstbusinesswebsite/index.htm','title==Your First Business Website');
g_navNode_4_6_3=g_navNode_4_6.addNode('vfa2_ss_b_stratandmanagement','Strategy and Management',ssUrlPrefix + 'business/businesssense/strategyandmanagement/index.htm','title==Strategy and Management');
g_navNode_4_6_3_0=g_navNode_4_6_3.addNode('vfa2_cdf_bus_fast_track_mobile','Fast Track Your Mobile Advertising Plans',ssUrlPrefix + 'business/businesssense/strategyandmanagement/fasttrackyourmobileadvertisingplans/index.htm');
g_navNode_4_6_3_1=g_navNode_4_6_3.addNode('vfa2_cdf_bus_persp_e_business','E-Business Strategy\x3a Better Customer Service',ssUrlPrefix + 'business/businesssense/strategyandmanagement/ebusinessstrategybettercustomerservice/index.htm','title==E-Business Strategy\x3a Better Customer Service');
g_navNode_4_6_3_2=g_navNode_4_6_3.addNode('vfa2_ss_b_ismusic','Is Music At Work Good For Business?',ssUrlPrefix + 'business/businesssense/strategyandmanagement/musicatwork/index.htm','title==Is Music At Work Good For Business?');
g_navNode_4_6_3_3=g_navNode_4_6_3.addNode('vfa2_ss_b_fivefixes','5 \'Fixes\' For Small Business',ssUrlPrefix + 'business/businesssense/strategyandmanagement/fivefixes/index.htm','title==5 \\x27Fixes\\x27 For Small Business');
g_navNode_4_6_3_4=g_navNode_4_6_3.addNode('vfa2_ss_b_generationgap','Managing The Generation Gap For X \x26 Y',ssUrlPrefix + 'business/businesssense/strategyandmanagement/generationgap/index.htm','title==Managing The Generation Gap For X \x26 Y');
g_navNode_4_6_3_5=g_navNode_4_6_3.addNode('vfa2_ss_b_rewardingstaff','Rewarding Staff When Money Is Tight',ssUrlPrefix + 'business/businesssense/strategyandmanagement/rewardingstaff/index.htm','title==Rewarding Staff When Money Is Tight');
g_navNode_4_6_3_6=g_navNode_4_6_3.addNode('vfa2_ss_b_saveyourrep','Save Your Rep When it Hits The Fan',ssUrlPrefix + 'business/businesssense/strategyandmanagement/saveyourrep/index.htm','title==Save Your Rep When it Hits The Fan');
g_navNode_4_6_3_7=g_navNode_4_6_3.addNode('vfa2_ss_b_adcampaign','7 Steps to Your First Ad Campaign',ssUrlPrefix + 'business/businesssense/strategyandmanagement/firstadcampaign/index.htm','title==7 Steps to Your First Ad Campaign');
g_navNode_4_6_3_8=g_navNode_4_6_3.addNode('vfa2_ss_b_busworthbuying','Is Your Business Really Worth Buying?',ssUrlPrefix + 'business/businesssense/strategyandmanagement/businessworthbuying/index.htm','title==Is Your Business Really Worth Buying?');
g_navNode_4_6_3_9=g_navNode_4_6_3.addNode('vfa2_ss_b_marketingmojo','Improve Your Marketing Mojo - Connect Direct With Customers',ssUrlPrefix + 'business/businesssense/strategyandmanagement/marketingmojo/index.htm','title==Improve Your Marketing Mojo - Connect Direct With Customers');
g_navNode_4_6_3_10=g_navNode_4_6_3.addNode('vfa2_ss_b_darejennings','Dare Jennings, Entrepreneur',ssUrlPrefix + 'business/businesssense/strategyandmanagement/darejenningsentrepeneur/index.htm','title==Dare Jennings, Entrepreneur');
g_navNode_4_6_3_11=g_navNode_4_6_3.addNode('vfa2_ss_b_timgoodman','Tim Goodman, Auction Hero',ssUrlPrefix + 'business/businesssense/strategyandmanagement/timgoodmanauctionhero/index.htm','title==Tim Goodman, Auction Hero');
g_navNode_4_6_3_12=g_navNode_4_6_3.addNode('vfa2_ss_b_beatingbigbusiness','Beating Big Business At Its Own Game',ssUrlPrefix + 'business/businesssense/strategyandmanagement/beatingbigbusiness/index.htm','title==Beating Big Business At Its Own Game');
g_navNode_4_6_3_13=g_navNode_4_6_3.addNode('vfa2_ss_b_busleaderpterbond','Business Leader Q\x26A\x3a Peter Bond',ssUrlPrefix + 'business/businesssense/strategyandmanagement/businessleaderpeterbond/index.htm','title==Business Leader Q\x26A\x3a Peter Bond');
g_navNode_4_6_3_14=g_navNode_4_6_3.addNode('vfa2_ss_b_busleaderterrymorris','Business Leader Q\x26A\x3a Terry Morris',ssUrlPrefix + 'business/businesssense/strategyandmanagement/businessleaderterrymorris/index.htm','title==Business leader Q\x26A\x3a Terry Morris');
g_navNode_4_6_3_15=g_navNode_4_6_3.addNode('vfa2_ss_b_tightencashflow','Tighten Up Cash Flow',ssUrlPrefix + 'business/businesssense/strategyandmanagement/tightencashflow/index.htm','title==Tighten Up Cash Flow');
g_navNode_4_6_3_16=g_navNode_4_6_3.addNode('vfa2_ss_b_work9to5','Working 9 to 5 a Waste of Time?',ssUrlPrefix + 'business/businesssense/strategyandmanagement/working9to5/index.htm','title==Working 9 to 5 a Waste of Time?');
g_navNode_4_6_3_17=g_navNode_4_6_3.addNode('vfa2_ss_b_busleadersethgodin','Seth Godin Interview\x3a Business Reputation in 2009',ssUrlPrefix + 'business/businesssense/strategyandmanagement/businessleadersethgodin/index.htm','title==Seth Godin Interview\x3a Business Reputation in 2009');
g_navNode_5=g_navNode_Root.addNode('vfa2_ss_helpsupport','Help \x26 Support',ssUrlPrefix + 'help/index.htm','description==Need some help? Log into your account, find out how to view and pay your bill online, change address details or browse frequently asked questions.','keywords==myvodafone, vodafone help, vodafone support','title==Help \x26 Support');
g_navNode_5_0=g_navNode_5.addNode('vfa2_ss_h_devices','Mobiles \x26 Devices',ssUrlPrefix + 'help/devices/index.htm','title==Mobiles \x26 Devices - Help \x26 Support\x3a Vodafone Australia');
g_navNode_5_0_0=g_navNode_5_0.addNode('vfa2_ss_h_mobilepdasetup','Mobile \x26 PDA Setup',ssUrlPrefix + 'help/devices/MobilePDASetup/index.htm','title==Mobile \x26 PDA Setup');
g_navNode_5_0_1=g_navNode_5_0.addNode('vfa2_ss_h_devfaqs','FAQs',ssUrlPrefix + 'help/devices/faqs/index.htm','title==FAQs');
g_navNode_5_0_2=g_navNode_5_0.addNode('vfa2_ss_h_devlinks','Links to Manufacturers',ssUrlPrefix + 'help/devices/links/index.htm','title==Links to Manufacturers');
g_navNode_5_1=g_navNode_5.addNode('vfa2_ss_h_account','Accounts \x26 Billing',ssUrlPrefix + 'help/account/index.htm','title==Accounts \x26 Billing');
g_navNode_5_1_0=g_navNode_5_1.addNode('vfa2_ss_h_accmyvodafone','My Vodafone',ssUrlPrefix + 'help/account/myvodafone/index.htm','title==My Vodafone');
g_navNode_5_1_1=g_navNode_5_1.addNode('vfa2_ss_h_onlinebilling','Online Billing Options',ssUrlPrefix + 'help/account/onlinebilling/index.htm','keywords==online billing, paperless billing, email bill, electronic billing','title==Online Billing Options');
g_navNode_5_1_2=g_navNode_5_1.addNode('vfa2_ss_h_accfaqs','FAQs',ssUrlPrefix + 'help/account/faqs/index.htm','title==FAQs');
g_navNode_5_1_3=g_navNode_5_1.addNode('vfa2_ss_h_paymentprocessing','Payment Processing Information',ssUrlPrefix + 'help/account/paymentprocessinfo/index.htm','title==Payment Processing Information');
g_navNode_5_1_4=g_navNode_5_1.addNode('vfa2_ss_h_billexplainer','Bill Explainer',ssUrlPrefix + 'help/account/billexplainer/index.htm','iFrameHeight==550','iFrameURL==http\x3a//www.vodafone.com.au/help/account/billexplainer/bill_explainer.htm ');
g_navNode_5_2=g_navNode_5.addNode('vfa2_ss_h_services','Vodafone Services',ssUrlPrefix + 'help/services/index.htm','title==Services - Help \x26 Support\x3a Vodafone Australia');
g_navNode_5_2_0=g_navNode_5_2.addNode('vfa2_ss_h_callingvoicemail','123 \'Ask us Anything\' \x26 Directory Assistance',ssUrlPrefix + 'help/services/123anddirectoryassistance/index.htm','title==123 \\x27Ask us Anything\\x27 \x26 Directory Assistance');
g_navNode_5_2_1=g_navNode_5_2.addNode('vfa2_ss_h_messaging','Messaging',ssUrlPrefix + 'help/services/messaging/index.htm','title==Messaging');
g_navNode_5_2_2=g_navNode_5_2.addNode('vfa2_ss_h_internet','Mobile Internet Services',ssUrlPrefix + 'help/services/internet/index.htm','title==Mobile Internet Services');
g_navNode_5_2_3=g_navNode_5_2.addNode('vfa2_ss_h_vodafonemusicstore','Vodafone Music Store',ssUrlPrefix + 'help/services/music/index.htm','title==Vodafone Music Store');
g_navNode_5_2_4=g_navNode_5_2.addNode('vfa2_ss_h_insurance','Vodafone Cover me Mobile Insurance',ssUrlPrefix + 'help/services/insurance/index.htm','title==Vodafone Cover me Mobile Insurance');
g_navNode_5_2_5=g_navNode_5_2.addNode('vfa2_ss_h_coverage','Coverage',ssUrlPrefix + 'help/services/coverage/index.htm','description==Frequently asked questions about Vodafone Mobile Coverage, 3G Coverage in Australia, 3G Broadband Coverage, and troubleshooting advice.','keywords==vodafone coverage, vodafone 3G coverage, vodafone coverage areas','title==Coverage');
g_navNode_5_2_6=g_navNode_5_2.addNode('vfa2_ss_h_roaming','International Roaming',ssUrlPrefix + 'help/services/roaming/index.htm','description==Frequently asked questions about Vodafone\\x27s Global Roaming services. Includes How Vodafone World works, how it\\x27s charged, how to activate, roaming with prepay.','keywords==vodafone roaming, vodafone global roaming, global roaming service, global roaming','title==International Roaming');
g_navNode_5_2_7=g_navNode_5_2.addNode('vfa2_ss_h_internationalcalling','International Calling',ssUrlPrefix + 'help/services/internationalcalling/index.htm','description==Frequently asked questions about making international phone calls with Vodafone,  international calling rates, inclusions and exclusions, what is IDD and more.','keywords==making international calls, vodafone calling international, making international calls on vodafone','title==International Calling');
g_navNode_5_2_8=g_navNode_5_2.addNode('vfa2_ss_h_parentallock','Parental Lock',ssUrlPrefix + 'help/services/parentallock/index.htm','title==Parental Lock');
g_navNode_5_3=g_navNode_5.addNode('vfa2_ss_h_vodafonelive','Mobile Internet \x26 Vodafone live\x21',ssUrlPrefix + 'help/live/index.htm','title==Mobile Internet \x26 Vodafone live\x21');
g_navNode_5_4=g_navNode_5.addNode('vfa2_ss_h_mbb','Mobile Broadband',ssUrlPrefix + 'help/mobilebroadband/index.htm','title==Mobile Broadband - Help \x26 Support\x3a Vodafone Australia');
g_navNode_5_4_0=g_navNode_5_4.addNode('vfa2_ss_h_datacardsoftware','Data Card',ssUrlPrefix + 'help/mobilebroadband/datacard/index.htm','title==Data Card');
g_navNode_5_4_1=g_navNode_5_4.addNode('vfa2_ss_h_usbstick','Internet Stick - Postpay',ssUrlPrefix + 'help/mobilebroadband/internetstick/index.htm','title==Internet Stick');
g_navNode_5_4_2=g_navNode_5_4.addNode('vfa2_p_cdf_p_mbb_stick_prepaid','Internet Stick - Prepaid',ssUrlPrefix + 'help/mobilebroadband/internetstickprepaid/index.htm','title==Internet Stick - Prepaid');
g_navNode_5_4_3=g_navNode_5_4.addNode('vfa2_ss_h_usbsoftware','USB Modem',ssUrlPrefix + 'help/mobilebroadband/usbmodem/index.htm','title==USB Modem');
g_navNode_5_4_4=g_navNode_5_4.addNode('vfa2_ss_h_builtinsoftware','Laptops with Built-in',ssUrlPrefix + 'help/mobilebroadband/builtin/index.htm','title==Laptops with Built-in');
g_navNode_5_4_5=g_navNode_5_4.addNode('vfa2_ss_h_netbook','Netbook with Built-in',ssUrlPrefix + 'help/mobilebroadband/netbook/index.htm','title==Netbook with Built-in');
g_navNode_5_4_6=g_navNode_5_4.addNode('vfa2_ss_h_mbbfaqs','Mobile Broadband FAQs',ssUrlPrefix + 'help/mobilebroadband/mobilebroadbandfaqs/index.htm','title==Mobile Broadband FAQs');
g_navNode_5_5=g_navNode_5.addNode('40','Network Status',ssUrlPrefix + 'help/networkstatus/index.htm','iFrameHeight==1150','iFrameURL==http\x3a//www.vfsponsorship.com/vca/konzept/class_http/map/networkstatusmap.php');
g_navNode_5_5_0=g_navNode_5_5.addNode('vfa2_ss_p_networkstatus','Network Status',ssUrlPrefix + 'help/networkstatus/networkstatus/index.htm','iFrameHeight==1195','iFrameURL==http\x3a//www.vfsponsorship.com/vca/konzept/class_http/map/networkstatusmap.php');
g_navNode_5_5_1=g_navNode_5_5.addNode('vfa2_ss_p_coveragemapsnetwork','Coverage Maps',ssUrlPrefix + 'help/networkstatus/maps/index.htm');
g_navNode_5_6=g_navNode_5.addNode('vfa2_ss_h_contactusnew','Contact Us',ssUrlPrefix + 'help/contactus/index.htm','title==Contact Us');
g_navNode_5_6_0=g_navNode_5_6.addNode('vfa2_ss_h_telephonenos','Telephone Numbers',ssUrlPrefix + 'help/contactus/telephonenumbers/index.htm','title==Telephone Numbers');
g_navNode_5_6_1=g_navNode_5_6.addNode('vfa2_ss_h_businesssupport','Business Support',ssUrlPrefix + 'help/contactus/businesssupport/index.htm','title==Business Support');
g_navNode_5_6_2=g_navNode_5_6.addNode('vfa2_ss_h_werehereforyou','We\'re here for you',ssUrlPrefix + 'help/contactus/werehereforyou/index.htm','title==We\\x27re here for you');
