
//--------------------------------------------------------------------

var page = new Page();
var imageBg = new ImageBackground();
var navigation = new Navigation();
var gallery = ( galleryFiles ) ? new ImageGallery() : null;
var movie = ( movieFiles ) ? new Movie() : null;

//--------------------------------------------------------------------

window.addEvent("domready",function() {
	page.__construct( 'contentContainerBackground', 'contentContainer', 'contentOverflowContainer', 'content', 'contentHideButton', 'pageCounter' );
	page.setHeight();
	imageBg.setImage( moodImage );
	navigation.__construct( 'navigation', 'logo', 'navigationBackground', 'navigationNodes' );
	if( gallery !== null ) gallery.__construct( imageBg.getImage(), galleryFiles );
	if( movie !== null ) movie.__construct( movieFiles );
});

//--------------------------------------------------------------------

window.addEvent("resize",function() {
	page.setHeight();
	imageBg.adapt();
	if( gallery !== null && gallery.isActive() === true ) gallery.setPosition();
	if( movie !== null ) movie.setPosition();
});

//--------------------------------------------------------------------

