<!--
//Adapted from maXimus' Static menu script II (http://maximus.ravecore.com)
var offsetleft=10;
var offsettop=170;

var ns4=document.layers?1:0;
var ie4=document.all?1:0;
var ns6=document.getElementById&&!document.all?1:0;

function makeStatic() {
if (ie4) {object1.style.pixelTop=document.body.scrollTop+offsettop}
else if (ns6) {document.getElementById("object1").style.top=window.pageYOffset+offsettop}
else if (ns4) {eval(document.object1.top=eval(window.pageYOffset+offsettop))}
setTimeout("makeStatic()",0);
}

if (ie4||ns6) {
	document.write('<span ALIGN="LEFT" ID="object1" STYLE="Position:absolute; Top:170; Z-Index:5;cursor:hand;">');
	document.write('<table width="155"><tr><td><a href="/download/index.html"><img src="/gfx/slider.jpg" width="150" height="84" border="0" hspace="5"></a><br>');
	document.write('</td></tr><tr><td>');
	document.write('<img src="/gfx/livehelpunavailable.gif" alt="" name="hcIcon" width=149 height=58 border=0 align="left" vspace="2"></td>');
    document.write('</tr><tr><td><div align="center" class="smallText"><p>To enable Live Help please <br>send your Sign-In name to <br><a href="mailto:livehelp@jimfeistpoker.net?subject=Enable%20Live%20Help">livehelp@jimfeistpoker.net</a>. <br>Please allow 24 hours for a response.</p></div></td>');
	document.write('</tr></table></span>');
  }

function slider(){
if (ns6||ie4||ns4){
makeStatic();}
}

window.onload=slider;
//-->