

function glowit(which){
if (document.all.glowtext[which].filters[0].strength==3)
document.all.glowtext[which].filters[0].strength=2
else
document.all.glowtext[which].filters[0].strength=3
}

function glowit2(which){
if (document.all.glowtext.filters[0].strength==3)
document.all.glowtext.filters[0].strength=2
else
document.all.glowtext.filters[0].strength=3
}

function startglowing(){
if (document.all.glowtext&&glowtext.length){
for (i=0;i<glowtext.length;i++)
eval('setInterval("glowit('+i+')",150)')
}
else if (glowtext)
setInterval("glowit2(0)",150)
}


  function imgswap(name, type)  
  {
   eval("document." + name + ".src = '" + type + ".jpg'");
  }


function reapply(){
setTimeout("slideit()",2000)
return true
}
window.onerror=reapply

<!--
var image1=new Image()
image1.src="images/beef_graphic.jpg"
var image2=new Image()
image2.src="images/elk_graphic.jpg"
var image3=new Image()
image3.src="images/buffalo_graphic.jpg"
var image4=new Image()
image4.src="images/venison_graphic.jpg"
//-->

<!--
////change number of images below 
var number_of_images=4
//change speed below (in seconds)
var speed=3
var step=1
var whichimage=1

function slideit(){
if (!document.images)
return
if (document.all)
slide.filters.blendTrans.apply()
document.images.slide.src=eval("image"+step+".src")
if (document.all)
slide.filters.blendTrans.play()
whichimage=step
if (step<number_of_images)
step++
else
step=1
if (document.all)
setTimeout("slideit()",speed*1000+3000)
else
setTimeout("slideit()",speed*1000)
}

function slidelink(){
if (whichimage==1)
window.location="link1.htm"
else if (whichimage==2)
window.location="link2.htm"
else if (whichimage==3)
window.location="link3.htm"
}
//-->

