	<!--
	
	  if (document.images)
	   {
	     pic1on= new Image(212,289);
	     pic1on.src="assets/templates/302/jeep_on.gif";
	     pic2on= new Image(212,289);
	     pic2on.src="assets/templates/302/dodge_on.gif";
	     pic3on= new Image(212,289);
	     pic3on.src="assets/templates/302/chrysler_on.gif";
	     	
	     pic1off= new Image(212,289);
	     pic1off.src="assets/templates/302/jeep_off.gif";
	     pic2off= new Image(212,289);
	     pic2off.src="assets/templates/302/dodge_off.gif";
	     pic3off= new Image(212,289);
	     pic3off.src="assets/templates/302/chrysler_off.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;
	    }
	 }
	
	//-->