// JavaScript Document
function MM_swapImgRestore() { //v3.0
	var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
	var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
	var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
	if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImage() { //v3.0
	var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
	if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		dealer_nav_03_over = newImage("images/dealer-nav_03-over.jpg");
		dealer_nav_05_over = newImage("images/dealer-nav_05-over.jpg");
		dealer_nav_07_over = newImage("images/dealer-nav_07-over.jpg");
		dealer_nav_09_over = newImage("images/dealer-nav_09-over.jpg");
		dealer_nav_15_over = newImage("images/dealer-nav_15-over.jpg");
		dealer_nav_17_over = newImage("images/dealer-nav_17-over.jpg");
		dealer_nav_18_over = newImage("images/dealer-nav_18-over.jpg");
		preloadFlag = true;
	}
}

function MM_findObj(n, d) { //v4.01
	var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
	d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
	if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		nav_01_over = newImage("images/nav_01-over.jpg");
		nav_02_over = newImage("images/nav_02-over.jpg");
		nav_03_over = newImage("images/nav_03-over.jpg");
		nav_04_over = newImage("images/nav_04-over.jpg");
		nav_05_over = newImage("images/nav_05-over.jpg");
		preloadFlag = true;
	}
}


function showLayer(whichLayer)
{
	if (document.getElementById)
	{
		// this is the way the standards work
		document.getElementById(whichLayer).style.display = "block";
	}
	else if (document.all)
	{
		// this is the way old msie versions work
		document.all[whichLayer].style.display = "block";
	}
	else if (document.layers)
	{
		// this is the way nn4 works
		document.layers[whichLayer].style.display = "block";
	}
}
function hideLayer(whichLayer)
{
	if (document.getElementById)
	{
		// this is the way the standards work
		document.getElementById(whichLayer).style.display = "none";
	}
	else if (document.all)
	{
		// this is the way old msie versions work
		document.all[whichLayer].style.display = "";
	}
	else if (document.layers)
	{
		// this is the way nn4 works
		document.layers[whichLayer].style.display = "";
	}
}

function layerShown(whichLayer)
{
	if (document.getElementById)
	{
		// this is the way the standards work
		return document.getElementById(whichLayer).style.display == "block";
	}
	else if (document.all)
	{
		// this is the way old msie versions work
		return document.all[whichLayer].style.display == "block";
	}
	else if (document.layers)
	{
		// this is the way nn4 works
		return document.layers[whichLayer].style.display == "block";
	}
	else
	{
		return true;
	}
}

function toggle(whichLayer)
{
	if (layerShown(whichLayer))
	{
		hideLayer(whichLayer);
	}
	else
	{
		showLayer(whichLayer);
	}
}

function handleVis(whichLayer, on)
{
	if (on)
	{
		showLayer(whichLayer);
	}
	else
	{
		hideLayer(whichLayer);
	}
}

function twoStepVis(whichLayer, whichOtherLayer, on)
{
	if (on)
	{
		showLayer(whichLayer);
	}
	else
	{
		hideLayer(whichLayer);
		hideLayer(whichOtherLayer);
	}
}

function visLayer(whichLayer)
{
	if (document.getElementById)
	{
		// this is the way the standards work
		document.getElementById(whichLayer).visiblity = "visible";
	}
	else if (document.all)
	{
		// this is the way old msie versions work
		document.all[whichLayer].visibility = "visible";
	}
	else if (document.layers)
	{
		// this is the way nn4 works
		document.layers[whichLayer].visibility = "visible";
	}
}

