//configure the below two variables to determine where the static content will initially be positioned when the document loads, in terms of X and Y cooridinates, respectively

var w=0;
var h=0;


////Do not edit pass this line///////////
w+=ietruebody().scrollLeft;
h+=ietruebody().scrollTop;

var leftpos=w;
var toppos=h;
document.getElementById("blackFloatNav").style.left=w;
document.getElementById("blackFloatNav").style.top=h;

function onoffdisplay()
{
	if (document.getElementById("blackFloatNav").style.display=='') 
		document.getElementById("blackFloatNav").style.display='none';
	else
		document.getElementById("blackFloatNav").style.display='';
}

function staticize()
{
	w2=ietruebody().scrollLeft+leftpos;
	h2=ietruebody().scrollTop+toppos;
	document.getElementById("blackFloatNav").style.left=w2;
	document.getElementById("blackFloatNav").style.top=h2;
}
window.onscroll=staticize;