//<script>
// ****

window.onresize = resize;
window.onload = load;

var loading = null;		// Used for when "loading" stuff
var background = null;	// Used to center the content
var gallery = null;		// Used for the gallery selector
var thumbnail = null;	// Used for the thumbnails

function load() {
	loading = new myLoading();
	background = new myBackground();
	gallery = new myGallery();
	thumbnail = new myThumbnail();

	background.display();
	gallery.load();
}

function resize() {
	background.center();
	gallery.center();
	thumbnail.expend(true);
}

// ****
