window.addEvent('domready', function() { 


// Wir erstellen ein neues Div mit der Klasse
// "foobar" und ein paar Inline-Styles
var meinDiv = new Element('div', {
	'class': 'foobar',
	'text': 'TODO Logos!',
	'styles': {
		'font-weight': 'bold',
		'margin': '1em'
	}
});

// Die "inject()"-Methode des Div-Objekts fügt das
// Element in ein anderes Element ein
var meinAnderesDiv = $('footer');
//meinDiv.inject(meinAnderesDiv);

var inhalt = $('inhalt_big');
//inhalt.fade('out');

 var data = {
			//Laden der Daten für die Slideshow
	      'image01.jpg': { caption: 'Villa' }, 
	      'image02.jpg': { caption: 'Balkon' }, 
	      'detail6.jpg': { caption: 'Brunnen' },
		 'DSCN2363.jpg': { caption: 'Brunnen' },
		 'Detail.jpg': { caption: 'Haus' },
		 'detail10.jpg': { caption: 'Brunnen' },
		 'DSCN2376.jpg': { caption: 'Garten' },
		 'HPIM6858.jpg': { caption: 'Figuren' },
		 'HPIM6894.jpg': { caption: 'Figuren' },
		 'HPIM6917.jpg': { caption: 'Figuren' },
		 'HPIM6953.jpg': { caption: 'Säulen' },
		 'P1010456A.jpg': { caption: 'Beton' },
		 'RajaHarris.jpg': { caption: 'Villa' },
		 'VillaHamburg.jpg': { caption: 'Villa' },
		 'P1050173.jpg': { caption: 'Beton' },
		 'HPIM6907.jpg': { caption: 'Brunnen' }
	    };
		//initialisieren der Slideshow
	  var myShow = new Slideshow('show', data, { captions: false, controller: false, height: 400, hu: 'images/', width: 810, overlap: false, resize: 'height'});


}); 



window.addEvent('onload', function() { 
alert('Geladen!');
//benutzerdefinierte Scrollbalken
new ScrollControl($('contentcontainer'), {'createControls': true});
});
