Shadowbox.init(
		{
   		 language: 'en',
   		 players:  ['html', 'iframe'],
		 autoplayMovies: true,
		 handleOversize: 'resize'
		});

		function scrollGalerie(seite)
		{
			// Wenn Shadowbox offen
			if(Shadowbox.isOpen() == true)
			{
			    if(seite == "links")
			    {
			        Shadowbox.previous();
			    }
			    else if(seite == "rechts")
			    {
			        Shadowbox.next();
			    }
			}
			else
			{
			    //nix
			}
		}
		
		function showSite()
		{
		    var t=setTimeout("show()",1500);
		}
		function show()
		{
		    document.getElementById('main-wrapper').style.visibility='visible';
		}
