<!--Created by Randy Bennet http://home.thezone.net/~rbennett/utility/javahead.htm
//Featured on Website Abstraction (http://wsabstract.com)
//http://javascriptkit.com/script/script2/staticmenu.shtml
//For this and over 400+ free scripts, visit http://wsabstract.com
//Static Menu //-->

function setVariables() {
if (document.layers) {
v=".top=";
dS="document.";
sD="";
y="window.pageYOffset";
}
else if (document.all){
v=".pixelTop=";
dS="";
sD=".style";
y="document.documentElement.scrollTop";
}
else if (document.getElementById){
y="window.pageYOffset";
}
}
function checkLocation() {
object="subMenu";
yy=eval(y);
if (document.getElementById)
document.getElementById("subMenu").style.top=yy+"px"
else
eval(dS+object+sD+v+yy)
setTimeout("checkLocation()",10);
}
