var paddingleft = 0;
var scrollspeed = 1;

function bildLauf() 
{
paddingleft = paddingleft - scrollspeed;
if (paddingleft<-1000)
	{paddingleft = 0;}
document.getElementById('bestpics').style.marginLeft = paddingleft+"px";
document.getElementById('bestpics').style.paddingRight = "0px";
if (scrollspeed != 0)
	setTimeout('bildLauf()', 50) 
}

function Submenu( parentid )
{
	if (document.getElementById("menu_"+parentid).style.display == "none")
		document.getElementById("menu_"+parentid).style.display = "block";
	else
		document.getElementById("menu_"+parentid).style.display = "none";
}


