/* onLoadPage */
function onLoadPage() {
	searchBlurVIN();
	try {
		var testBilderstrecke = document.getElementById( 'bilderstrecke' ).style.width;
		initBS();
	} catch( e ) { }
	setBarsVIN();
}

/* Linke, Rechte Spalte einfaerben */
function setBarsVIN() {
	var barsHeight = document.getElementById( "main" ).offsetHeight;
	var windowHeight = document.documentElement.clientHeight;
	windowHeight = windowHeight - 280; /* ViN header */
	windowHeight = windowHeight - 35;  /* ViN topNav */
	if( document.getElementById( 'left' ).offsetHeight > barsHeight ) {
		barsHeight = document.getElementById( 'left' ).offsetHeight;
	}
	if( document.getElementById( 'right' ).offsetHeight > barsHeight ) {
		barsHeight = document.getElementById( 'right' ).offsetHeight;
	}
	if( document.getElementById( 'contentBox' ).offsetHeight > barsHeight ) {
		barsHeight = document.getElementById( 'contentBox' ).offsetHeight;
	}
	if( windowHeight > barsHeight ) {
		barsHeight = windowHeight;
	}
	document.getElementById( 'nav' ).style.height = barsHeight + 'px';
	document.getElementById( 'right' ).style.height = barsHeight + 'px';
	document.getElementById( 'contentBox' ).style.height = ( barsHeight - 20 ) + 'px';
}

