pic7 = new Image();
pic7.src = "/common/images/interface/topbar__arrow_over.gif";

pic8 = new Image();
pic8.src = "/common/images/interface/icons__font_small_over.gif";

pic9 = new Image();
pic9.src = "/common/images/interface/icons__font_mid_over.gif";

pic10 = new Image();
pic10.src = "/common/images/interface/icons__font_large_over.gif";

function checkScroll()
{
		if (parseInt(navigator.appVersion)>3) 
		{
			 if (navigator.appName=="Netscape") {
				  winW = window.innerWidth;
				  winH = window.innerHeight;
				if( winW < 1024 )
				{
					document.getElementsByTagName("html")[0].className = "yesx";
					document.getElementsByTagName("body")[0].className = "yesx";
				}
				else
				{
					document.getElementsByTagName("html")[0].className = "nox";
					document.getElementsByTagName("body")[0].className = "nox";
				}
			 }
			 if (navigator.appName.indexOf("Microsoft")!=-1) {
				  winW = parseInt(document.body.offsetWidth);
				  winH = parseInt(document.body.offsetHeight);
				if( winW < 1003 )
				{
					document.getElementsByTagName("html")[0].className = "yesx";
					document.getElementsByTagName("body")[0].className = "yesx";
				}
				else
				{
					document.getElementsByTagName("html")[0].className = "nox";
					document.getElementsByTagName("body")[0].className = "nox";
				}
			}
		}
}