	<!--
	   var aProductPics = new Array()

  	 aProductPics[0]= "http://www.grunt.com/images-product/band2rot.jpg"
  	 aProductPics[1]= "http://www.grunt.com/images-product/band2rot.jpg"
		 aProductPics[2]= "http://www.grunt.com/images-product/FKC3156rot.jpg"
		 aProductPics[3]= "http://www.grunt.com/images-product/FKC3156rot.jpg"
	   aProductPics[4]= "http://www.grunt.com/images-product/z130rot.jpg"
		 aProductPics[5]= "http://www.grunt.com/images-product/lfm04rot.jpg" 
		





  	var aLinks = new Array()
		aLinks[0] = "http://usmcshop.grunt.com/grunt/productr.asp?pf_id=BAND2&PRID=LE_GRIT-ta2"
		aLinks[1] = "http://usmcshop.grunt.com/grunt/productr.asp?pf_id=BAND2&PRID=LE_GRIT-ta2"
		aLinks[2] = "http://usmcshop.grunt.com/grunt/productr.asp?pf_id=FKC3156&PRID=LE_GRIT-ta2"
		aLinks[3] = "http://usmcshop.grunt.com/grunt/productr.asp?pf_id=FKC3156&PRID=LE_GRIT-ta2"
	  aLinks[4] = "http://usmcshop.grunt.com/grunt/productr.asp?pf_id=Z130&PRID=LE_GRIT-ta2"
		aLinks[5] = "http://usmcshop.grunt.com/grunt/productr.asp?pf_id=LFM04&PRID=LE_GRIT-ta2"
		
		


     var intPicCounter = 0
             function ChangeProduct() {
               intPicCounter++
                  if (intPicCounter == 6) {
                  intPicCounter = 0
                  }
               document.imgProduct.src = aProductPics[intPicCounter]
               setTimeout("ChangeProduct()", 5000)
             }

function goCatalog(){
document.location.href=aLinks[intPicCounter]
}

function addSearch() {
  var ni = document.getElementById('myDiv');
  var numi = document.getElementById('theValue');
  var num = (document.getElementById('theValue').value -1)+ 2;
  numi.value = num;
  var newdiv = document.createElement('div');
  var divIdName = 'my'+num+'Div';
  newdiv.setAttribute('id',divIdName);
  newdiv.innerHTML = 'Element Number '+num+' Seeearch! <a href=\'#\' onclick=\'removeElement('+divIdName+')\'>Remove the div "'+divIdName+'"</a>';
  ni.appendChild(newdiv);
}
     -->