<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin

function setVariables() {
var screenres = screen.height; 

	if (screenres > 650){
	
		if (navigator.appName == "Netscape") {
			v=".top=";
			dS="document.";
			sD="";
			y="window.pageYOffset";
			checkLocation();
		}
		else {
			v=".pixelTop=";
			dS="";
			sD=".style";
			y="document.body.scrollTop";
			checkLocation();
  		}
	}
	else {

	}
}

function checkLocation() {
			object="menu";
			yy=eval(y);
			eval(dS+object+sD+v+yy);
			setTimeout("checkLocation()",10);
}
//  End -->