	var total = ""; 

// Array of Categories & html file names will write articles in this order.
navItems = new Array( ["Vehicle-Insider"],["Lexus-Lifestyle"],["Lexus-News"],["Magazine-Guide"]);



//Array of Article Titles
navTitles = new Array( ["Vehicle Insider"],["Lexus Lifestyle"],["Lexus News"],["Magazine Guide"]);




// Array of Categories & html file names will write articles in this order (non nav items files begin with an X)
xnavItems = new Array(["Arts-and-Culture","xDallas-Frontier","xIn-the-Deep","xMilano-Salone-Preview"],["Sports-and-Recreation","xRyan-Lochte","xThe-Right-Bank"] ,["Vehicle-Insider","xLED-headlamps","xRemote-Touch-System", "xRX-2010"]);


//Array of Article Titles
xnavTitles = new Array(["Arts and Culture","Design comes to Dallas","Furnishings for Outdoor Living","L-finesse in Milan"] ,[ "Sports and Recreation","Meet Golden Boy Ryan Lochte","A Kennedy Saves the Hudson"],[ "Vehicle Insider","Technology that Shines a Light","Technology at Your Fingertips", "RX Innovations"]);


//Array of Top Navigation Titles
topNavTitles = new Array(["Vehicle Insider"],["Lexus Lifestyle"] ,[ "Lexus News"] ,[ "Magazine Guide"]);


function leftNav() {	


	 
		total += '<div id="magazine-navigation"><ul id="nav-branch">';	 
		for(i=0; i<navItems.length; i++){		 
			
	 		total += '<li id="'+navItems[i][0]+'-top" class="nav-section"><a href="content.do#:/pub-share/magazine/html/'+navItems[i][0]+'/index.html">';
	 		total +=  '<img src="/pub-share/magazine/images/subnav_'+navItems[i][0]+'_off.gif" alt="'+navItems[i][0]+'" id="'+navItems[i][0]+'-img" height="21" width="171" border="0" /><\/a><\/li>';
total +=  '<li><ul class="closed" id="'+navItems[i][0]+'">'; // 

			for(k=1; k<navItems[i].length; k++){	

		total +=  '<li><a href="content.do#:/pub-share/magazine/html/'+navItems[i][0]+'/'+navItems[i][k]+'.html" class="sublink" id="'+navItems[i][k]+'">'+navTitles[i][k]+'<\/a><\/li>';	

			
		}
		total +=  '<\/ul><\/li>';
}


	 		//total += '<li id="Guide-to-Lexus-Magazine-top" class="nav-section"><a href="#:/pub-share/magazine/html/Guide-to-Lexus-Magazine/index.html" onClick="loader(\'/pub-share/magazine/html/Guide-to-Lexus-Magazine/index.html)\'>';
	 		//total +=  '<span id="Guide-to-Lexus-Magazine"></span><li id="Guide-to-Lexus-Magazine-top" class="nav-section"><a href="content.do#:/pub-share/magazine/html/Guide-to-Lexus-Magazine/index.html" class="sublink" ><img src="/pub-share/magazine/images/subnav_Guide-to-Lexus-Magazine_off.gif" alt="Guide-to-Lexus-Magazine" id="Guide-to-Lexus-Magazine-img" height="21" width="171" border="0" /><\/a><\/li>';

		total +=  '<\/ul><\/div>';
    
document.getElementById("nav").innerHTML = total;
//alert(total);

}

function mainNav() {
	var mainNavTotal = "";
	
	for(i=0; i<navItems.length; i++){
		var subNavTitle = topNavTitles[i][0];
	 	mainNavTotal += '<a href="/lexusdrivers/magazine/content.do#:/pub-share/magazine/html/'+navItems[i][0]+'/index.html">&#8250; ' + subNavTitle.toUpperCase() + '<\/a>';	 	
	}
	//mainNavTotal += '<a href="/lexusdrivers/magazine/content.do#:/pub-share/magazine/html/Guide-to-Lexus-Magazine/index.html">&#8250; ' + "Guide to Lexus <br \/>&#160;&#160;&#160;Magazine".toUpperCase() + '<\/a>';		
	 
	document.getElementById("magazine").innerHTML = mainNavTotal;
	
}

