

var nav_root = 'http://www.augustaautos.com/DEV/v3';
var nav_home = 'http://www.augustaautos.com/index.shtml'
var current_page = '';

var main_tabs = new Array;
main_tabs[0] = 'SHOP';
main_tabs[1] = 'RESEARCH';
main_tabs[2] = 'SELL';
//main_tabs[3] = 'MY CARS';
main_tabs[4] = 'AFTERMARKET';
//main_tabs[5] = 'ABOUT';

var main_tab_urls = new Array;
main_tab_urls[0] = '/shop/advanced/';
main_tab_urls[1] = '/research/';
main_tab_urls[2] = '/rd/sell.shtml';
main_tab_urls[3] = '/my/';
main_tab_urls[4] = '/shop/svcdir/';
//main_tab_urls[5] = '/about/';

var main_tab_desc = new Array;
main_tab_desc[0] = 'Power search, filter & compare.';
main_tab_desc[1] = 'Road Test reviews + news, safety, rebates.';
main_tab_desc[2] = 'Post your car today.';
main_tab_desc[3] = 'Your favorite vehicles and saved searches.';
main_tab_desc[4] = 'Services and accessories from A to Z.';
//main_tab_desc[5] = '/about/';

function drawHeader(){
	document.write('<script>OAS_AD(\'x31\');</script>');
	document.write('<table width=100% cellpadding=0 cellspacing=0 border=0><tr><td valign=middle>');
	document.write('<a href="' + nav_home + '"><img style="position:relative;left:7px;top:6px" src="http://www.augustaautos.com/DEV/v3/images/nav/logo_helv2.gif" border=0></a><br></td>');
	document.write('<td width=521 height=53 align=left valign=middle bgcolor="#cccccc" style="background-repeat:no-repeat; background-position:0 0; background-image:url(http://www.augustaautos.com/DEV/v3/images/promo/promo_bkg.gif); " id="promonav">');
//	document.write('<img style="margin:0 0 0 32px" src="http://www.augustaautos.com/DEV/v3/images/promo/top_promo_sample.gif"><br>');
	document.write('</td></tr></table>');
}

function drawTopNav(section,page) {

	var tab_class = new Array;
	for (i=0; i < main_tabs.length; i++)	{
		tab_class[i] = "tab";
	}	
	
	if (page != "review"){ document.title = "AugustaAutos"; }

	if (document.location.href.indexOf('autochooser.com') != -1) { 
		section = "shop"; 
		page = "ac";
	}

	if (section=="" || page=="home") {
		document.title = document.title + " - Search " + aa_inv_count + " new & used vehicles today";
	}
	else if ((section=="shop")) {
		tab_class[0] = "tab_on";
		if (page=="advanced") {document.title = document.title + ": Advanced Search"; }
		if (page=="pick") {document.title = document.title + ": Pick of the Lot"; }
		if (page=="svcdir") {document.title = document.title + ": Service Directory"; }
	}
	else if (section=="my") {
		tab_class[3] = "tab_on";
		if (page=="front") {document.title = document.title + ": My AugustaAutos"; }
		if (page=="searches") {document.title = document.title + ": My saved searches"; }
		if (page=="favorites") {document.title = document.title + ": My favorites"; }
	}
	else if (section=="research") {
		tab_class[1] = "tab_on";
		if (page=="front") {document.title = document.title + " - Research";}
	}
	else if (section=="svcdir") {
		tab_class[4] = "tab_on";
		document.title = document.title + " - Aftermarket: Services & accessories from A to Z";
	}
	else if ((section=="feedback")) {
		document.title = document.title + " - Feedback";
	}

	document.write ('<div id="mnu_top" style="margin:12px 0 0 0">');	
	if (page != "home" || section != "") {
		document.write ('<a title="AugustaAutos home" class="tab" href="' + nav_home + '">HOME</a>'); 
	}
	for (i=0; i < main_tabs.length; i++) {
		var tabstr = '';
		if (main_tabs[i]){
			tabstr = '<a title="' + main_tab_desc[i] + '" class="' + tab_class[i] + '" href="' + nav_root + main_tab_urls[i]  + '">' + main_tabs[i] + '</a>'
		}
		document.write (tabstr);
	}
	document.write ('<br>');
	document.write ('</div>');

//	drawSubNav(section,page);
}

function drawSubNav(section,page) {
	if (section=="" || page=="home") {
	}
	else if (section=="shop") {
		document.write ('<div id="subnav" style="margin-top:0px;">')
			document.write ('<b><a href="' + nav_root + '/shop/advanced/">Advanced Search</a></b><span class="sep">|</span>');
			document.write ('<b><a href="' + nav_root + 'http://augusta30.autochooser.com/results.asp?gid=0&pagename=dealersearch.asp&resulttype=2&postto=results.asp&pp=100">Find a Dealer</a></b><span class="sep">|</span>');
//			document.write ('<b><a href="' + nav_root + '/shop/pick/">Pick of the Lot Gallery</a></b><span class="sep">|</span>');
			document.write ('<b><a href="' + nav_root + '/shop/svcdir/">Auto-related Services</a></b><br>');
		document.write ('</div>');

	}
	else if (section=="my") {
		document.write ('<div id="subnav">')
			document.write ('<b><a href="' + nav_root + '/my/searches/">My Saved Searches</a></b><span class="sep">|</span>');
			document.write ('<b><a href="' + nav_root + '/my/favorites/">My Favorites</a></b><span class="sep">|</span>');
		document.write ('</div>');

	}
	else if (section=="svcdir") {
//		document.write ('<div id="subnav" style="height:12px;padding:0;"></div>');
	}
	else if (section=="research") {

	}
}

