
var g_buttons = { home:0, wahl:1, presse:2, jury:3, akademie:4, hall:5, beirat:6, fotos:7, blog:8 };

function getFlashMovieObject (movieName)
{
	if (parent['head'].document[movieName]) 
		return parent['head'].document[movieName];

	if (navigator.appName.indexOf ("Microsoft Internet") == -1)
	{
		if (parent['head'].document.embeds && parent['head'].document.embeds[movieName])
			return parent['head'].document.embeds[movieName]; 
	}
	else
		return parent['head'].document.getElementById (movieName);
}

function active_button ( num )
{
	var flashMovie = getFlashMovieObject ("dep_head");

	if ( !flashMovie )
		return;

	if ( num )
		flashMovie.SetVariable ("activeButton", num);
	else
		flashMovie.SetVariable ("activeButton", 0);
}
