// mouse overs
// mouseOvers functions


function goRed(imgName){
 imgOn=eval(imgName + "on.src");
 document [imgName] .src=imgOn;
}

function goBlue(imgName,file){
 imgOff=eval(imgName + "off.src");
 document [imgName] .src=imgOff;
}



function swap(img,file) {
	document.images[img].src=eval(file+".src");
}

//"car" image mouseOver image array
car_1 = new Image();
car_1.src = "images/car1_1.jpg";
car_1on = new Image ();
car_1on.src = "images/fleet.gif";

//"car2" image mouseOver image array
car_2 = new Image();
car_2.src = "images/car2_1.jpg";
car_2on = new Image ();
car_2on.src = "images/fleet.gif";

//"car3" image mouseOver image array
car_3 = new Image();
car_3.src = "images/car3_1.jpg";
car_3on = new Image ();
car_3on.src = "images/fleet.gif";

//"car4" image mouseOver image array
car_4 = new Image();
car_4.src = "images/car4_1.jpg";
car_4on = new Image ();
car_4on.src = "images/fleet.gif";

	//"car1_1" image mouseOver image array
car1_1 = new Image();
car1_1.src = "images/car1.jpg";
car1_1on = new Image ();
car1_1on.src = "images/car1_on.jpg";

//"car2_1" image mouseOver image array
car2_1 = new Image();
car2_1.src = "images/car2_on.jpg";
car2_1on = new Image ();
car2_1on.src = "images/car2.jpg";

	//"car3_2" image mouseOver image array
car3_1 = new Image();
car3_1.src = "images/car3_on.jpg";
car3_1on = new Image ();
car3_1on.src = "images/car3.jpg";

//"car4_1" image mouseOver image array
car4_1 = new Image();
car4_1.src = "images/car4_on.jpg";
car4_1on = new Image ();
car4_1on.src = "images/car4.jpg";
	
//"car1" image mouseOver image array
car1off = new Image();
car1off.src = "images/car1.jpg";
car1on = new Image ();
car1on.src = "images/car1_on.jpg";

//"car2_1" image mouseOver image array
car2off = new Image();
car2off.src = "images/car2.jpg";
car2on = new Image ();
car2on.src = "images/car2_on.jpg";

	//"car3_2" image mouseOver image array
car3off = new Image();
car3off.src = "images/car3.jpg";
car3on = new Image ();
car3on.src = "images/car3_on.jpg";

//"car4_1" image mouseOver image array
car4off = new Image();
car4off.src = "images/car4.jpg";
car4on = new Image ();
car4on.src = "images/car4_on.jpg";
	
//Mini window
function newWindow(mini){
miniWindow=window.open(mini,'miniWin','scrollbars=yes,resizable=yes,width=600,height=500,top=150,left=300')
miniWindow.focus()
}


//big window
function new2Window(second){
secondWindow=window.open(second,'secondWin','toolbar=yes,scrollbars=yes,location=yes,resizable=yes,width=500,height=300,top=150,left=70')
secondWindow.focus()
}

