/*------------------------------------------------------------------------------
	file:					auto_scroll.js
	author:				maik mettenheimer <maik@mettbox.de>
	version:			2007-12-07
	description:	show scroll navigation if sc.content.height <= 290px
------------------------------------------------------------------------------*/

var sc_height = document.getElementById('sc_content').offsetHeight;

if (sc_height <= 300)
{
	document.getElementById('sc_nav').style.display = 'none';
}	
