<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'images/CarFiHome2.jpg'
//theImages[1] = 'images/image2.png'


// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}
function navmenu(a){
	if (a=="explore"){
//		alert('hi');
	document.getElementById("nav").innerHTML='<li class="top"><a class="top_link" href="http://www.autonetmobile.com/service/"><span>Products/Services</span></a></li><li class="top"><a class="top_link" href="http://www.autonetmobile.com/apps/"><span>Apps</span></a></li><li class="top"><a class="top_link" href="http://www.autonetmobile.com/business/"><span>Business Solutions</span></a></li>';
			}
	else if (a=="shop"){ 
		document.getElementById("nav").innerHTML='<li class="top"><a class="top_link" href="http://dealers.autonetmobile.com/dealer_locator.php"><span>Dealers</span></a></li><li class="top"><a class="top_link" href="http://shop.autonetmobile.com/"><span>Accessories</span></a></li><li class="top"><a class="top_link" href="http://www.autonetmobile.com/apps/"><span>Applications</span></a></li>';
	}
	}
	function backme(a){
		document.getElementById(a).style.background="#bbbbbb";
		if (a!='exploreN'){
			document.getElementById('exploreN').style.background="#999999"
		}
		if (a!='shopN'){
			document.getElementById('shopN').style.background="#999999"
		}
	}
function hovMe(){
	document.getElementById('hov').style.background="#ffffff"	
}
function href(a){
	window.location.href = a;
}
//  End -->
