<!-- hide this script from non-javascript-enabled browsers

self.defaultStatus = "Audi Links - Your Link To Everything Audi";

// prevent being framed
if (top.location != location)
   top.location.href = location.href;

// prevent right mouse button
function click(e) {
	if (document.all) {
		if (event.button==2||event.button==3) {
			alert('Mouse Button Disabled');
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert('Mouse Button Disabled');
			return false;
		}
	}
}

//menu rollovers
function loadit(x)
{
	eval(x + "on = new Image()");
	eval(x + "on.src = 'images/navigation/" + x + "on.gif'");
	eval(x + "off = new Image()");
	eval(x + "off.src = 'images/navigation/" + x + "off.gif'");

}

bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
var br = "n2";
if((bName == "Netscape" && bVer >= 3) ||
   (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3";
if(br=="n3")
	{
	loadit("find");
	loadit("clas");
	loadit("foru");
	loadit("info");
	loadit("home");
	loadit("trade");
	}
function off(imgName){
	clearinfo();
	if(br=="n3"){
	document[imgName].src = eval(imgName + "off.src");
   }
   return(true);
}

function displayinfo(info){
	window.setTimeout("window.status='" + info + "'", 1);
	return true;
}
function clearinfo(){
	window.status = '';
	return true;
}

function on(imgName,info){
	unsure = false;
	displayinfo(info);	
	if(br=="n3"){
		document[imgName].src = eval(imgName + "on.src");
   }
   return(true);
}

//-->