	<!--
	
	  if (document.images)
	   {
	     pic1on= new Image(199,216);
	     pic1on.src="assets/templates/299/chevy2.gif";
	     pic2on= new Image(193,216);
	     pic2on.src="assets/templates/299/toyota2.gif";
	     pic3on= new Image(193,216);
	     pic3on.src="assets/templates/299/scion2.gif";
	     pic4on= new Image(199,216);
	     pic4on.src="assets/templates/299/preowned2.gif";
	     	
	     pic1off= new Image(199,216);
	     pic1off.src="assets/templates/299/chevy1.gif";
	     pic2off= new Image(193,216);
	     pic2off.src="assets/templates/299/toyota1.gif";
	     pic3off= new Image(193,216);
	     pic3off.src="assets/templates/299/scion1.gif";
	     pic4off= new Image(199,216);
	     pic4off.src="assets/templates/299/preowned1.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;
	    }
	 }
	
	//-->