var InfoHeight = 0;
var InfoLinksHeight = 0;
var InfoMitteHeight = 0;
var InfoRechtsHeight = 0;

function resizeHeight()
{
	var Info = document.getElementById("Info");
	var InfoLinks = document.getElementById("InfoLinks");
	var InfoMitte = document.getElementById("InfoMitte");
	var InfoRechts = document.getElementById("InfoRechtsFilm");
	
	InfoHeight = Info.offsetHeight;
	InfoLinksHeight = InfoLinks.offsetHeight;
	InfoMitteHeight = InfoMitte.offsetHeight;
	InfoRechtsHeight = InfoRechts.offsetHeight;
	
	if ( InfoLinksHeight < InfoHeight	) 
	{
		InfoLinks.style.height = InfoHeight + "px";
	}
	if ( InfoMitteHeight < InfoHeight ) 
	{
		InfoMitte.style.height = InfoHeight + "px";
	}
	if ( InfoRechtsHeight < InfoHeight ) 
	{
		InfoRechts.style.height = InfoHeight - 1 + "px";
	}
}


function getThumbs()
{
	
}
