﻿if(window.FastInit)
	FastInit.addOnLoad(initPage);
else if(window.Event && Event.observe)
	Event.observe(window, 'load', initPage);

function initPage() {
	initGallery();
}

function initGallery() {
	new Gallery('exhibitionItems');
	new Gallery('paintings');
	new Gallery('sculptures');
}

