navname = navigator.appName;
navvers = parseInt(navigator.appVersion);

js_ok = ((navname == "Microsoft Internet Explorer") && (navvers >= 4 )) || ((navname == "Netscape") && (navvers >= 4 ));

if (js_ok)
{
	bullet_on = new Image(102,16);
	bullet_on.src = "/graphix/indicator.gif";

	bullet_off = new Image(102,16);
	bullet_off.src = "/graphix/indicator_off.gif";
}

function menuitem( href, name, alt)
{
	document.write('<img src = "/graphix/one.gif" width = "5" height = "2"><br>');
	document.write('<a href = "'+href+'"');
	document.write(' onmouseout = "menuch(\''+name+'\',0);" onmouseover = "menuch(\''+name+'\',1);">');
	document.write('<img src = "/graphix/one.gif" width = "102" height = "16" hspace = "6" border = "0" name = "'+name+'"');
	document.write('alt = "'+alt+'"></a><br>');
}

function menuch(sel,hilo)
{
	if (js_ok)
        {
		toeval = '';

		if (hilo == 1)
                {
			toeval = 'document.'+sel+'.src = bullet_on.src;\n';
		} 
                else
                {
			toeval = 'document.'+sel+'.src = bullet_off.src;\n';
		}
		if (toeval != '') eval(toeval);
	}
}

document.write('<td width = "141" height="226" background="/graphix/side2.gif">');
menuitem('/info/index.asp','sidebar1','About Carquip -- History, Directions');
menuitem('/parts/index.asp','sidebar2','Extensive selection of parts for sale');
menuitem('/sale/index.asp','sidebar3','Cars for sale');
menuitem('/acq/index.asp','sidebar4','Sell your cars or parts');
menuitem('/proj/index.asp','sidebar5','Carquip Project Cars');
menuitem('/special/index.asp','sidebar6','Specials of the month');
menuitem('/advert/index.asp','sidebar7','Advertise on the Carquip site');
menuitem('/links/index.asp','sidebar8','Other useful Porsche sites');
menuitem('/feed/index.asp','sidebar9','Contact us with feedback');
menuitem('/index/index.asp','sidebar10','Complete index of Carquip site');
document.write('</td>');

