if(typeof vwLeftNav=="undefined")
{
var vwLeftNav = {};
}
vwLeftNav.data =
{
init : function()
{
this.navType = "vwCredit";
this.rootFolder = "vwCredit";
this.comingSoon = new Array();
this.nav = new Array();
this.nav[0] = {type:"t", title:"t_title", height:46};
this.nav[1] = {type:"hr_7", title:"m_hr"};
this.nav[2] = {type:"m", title:"m_overview", items:new Array(), url:this.getPath("overview"), height:19};

this.nav[2].items[0] = {type:"sm", title:"co_buyVsLease", items:new Array(), url:this.getPath("buyvslease"), height:17};
this.nav[2].items[1] = {type:"sm", title:"co_firstTimeBuyer", items:new Array(), url:this.getPath("firsttimebuyers"), height:17};
this.nav[2].items[2] = {type:"sm", title:"co_vehicleProtection", items:new Array(), url:this.getPath("vehicleprotection"), height:17};
this.nav[2].items[3] = {type:"sm", title:"co_waysToPay", items:new Array(), url:this.getPath("waystopay"), height:17};
this.nav[2].items[4] = {type:"sm", title:"co_myAccount", items:new Array(), url:"https://www.vwcredit.com/login.aspx", height:17};

//this.nav[3] = {type:"hr_7", title:"m_hr"};
//this.nav[4] = {type:"m", title:"m_vwCreditCard", items:new Array(), url:this.getPath("vwcreditcard"), height:19};
this.nav[3] = {type:"hr_7", title:"m_hr"};
this.nav[4] = {type:"m", title:"m_contactUs", items:new Array(), url:this.getPath("contactus"), height:19};
this.nav[5] = {type:"hr_7", title:"m_hr"};
},
getPath : function(inPage)
{

if(inPage == "overview")
return "/myvw/" + this.navType.toLowerCase() + vwLeftNav.util.getLangCountry();
else if(inPage == "newsroom")
return "/news/browse" + vwLeftNav.util.getLangCountry();
else
return "/myvw/vwcredit/"+inPage+vwLeftNav.util.getLangCountry();

}
}