var aImg2 = new Array();
var names2 = new Array( "bttn068.gif", "bttn136.gif", "bttn160.gif", "bttn184.gif", "bttn220.gif" );
var len = aImg2.length;
for ( i = len; i < ( names2.length + len ); i++)
{
	aImg2[ i ] = new Image();
	aImg2[ i ].src = names2[ i ];
}
//---------------------------
function nav_top()
{
	var pageWidth;
	var pageHeight;
	
	if( window.innerHeight && window.scrollMaxY ) // Firefox
	{
		pageWidth = window.innerWidth + window.scrollMaxX;
		pageHeight = window.innerHeight + window.scrollMaxY;
	}
	else if( document.body.scrollHeight > document.body.offsetHeight ) // all but Explorer Mac
	{
		pageWidth = document.body.scrollWidth;
		pageHeight = document.body.scrollHeight;
	}
	else // works in Explorer 6 Strict, Mozilla (not FF) and Safari
	{
		pageWidth = document.body.offsetWidth + document.body.offsetLeft;
		pageHeight = document.body.offsetHeight + document.body.offsetTop;
	}
	
	var DeltaTop = 750;
	if ( pageHeight > DeltaTop )
	{
		var bttns = Math.floor( pageHeight / DeltaTop );
		for ( i = 0; i < bttns; i++ )
		{
			var top = DeltaTop + i * DeltaTop;
			document.write('<div style="position: absolute; top:'+top+'px; left:28px;">');
			document.write('<a href="#" class="bttn068" title="top"><span>');
			document.write('<img src="/include/arrow_up.gif" alt="" width="14" height="14" border="0" style="margin: 10px 0 0 0;">');
			document.write('</span></a>');
			document.write('</div>');
		}
	}	
}