// JavaScript Document
//variable that will increment through the images
	var step=1
	var whichimage=1
	function slideit(){
	//if browser does not support the image object, exit.
	if (!document.images)
	return
	document.images.slide.src=eval("image"+step+".src")
	whichimage=step
	if (step<4)
	step++
	else
	step=1
	//call function "slideit()" every 2.5 seconds
	setTimeout("slideit()",4000)
	}
	slideit()
	function slidelink(){
	if (whichimage==1)
	window.location="electric_vehicle_news.php"
	else if (whichimage==2)
	window.location="electric_vehicle_buyers_guide.php"
	else if (whichimage==3)
	window.location="electric_vehicle_concepts.php"
	else if (whichimage==4)
	window.location="convert_electric_car.php"
	}
