	<!--
	
	  if (document.images)
	   {
	     pic1aon= new Image(170,135);
	     pic1aon.src="assets/templates/268/chrysler2.gif";
	     pic2on= new Image(170,135);
	     pic2on.src="assets/templates/268/jeep2.gif";
	     pic3on= new Image(170,135);
	     pic3on.src="assets/templates/268/dodge2.gif";
	     	
	     pic1aoff= new Image(170,135);
	     pic1aoff.src="assets/templates/268/chrysler1.gif";
	     pic2off= new Image(170,135);
	     pic2off.src="assets/templates/268/jeep1.gif";
	     pic3off= new Image(170,135);
	     pic3off.src="assets/templates/268/dodge1.gif";

	   }
	
	function lightup(imgName)
	 {
	   if (document.images)
	    {
	      imgOn=eval(imgName + "on.src");
	      document[imgName].src= imgOn;
	    }
	 }
	
	function turnoff(imgName)
	 {
	   if (document.images)
	    {
	      imgOff=eval(imgName + "off.src");
	      document[imgName].src= imgOff;
	    }
	 }
	
	//-->