var MyOwnLoad = function MyOwnLoad(e){
    //Do something that you need to do on full page load
    Context = new ImageContext({
        container: "imageManager",
        preloader: "imagePreloader",
        imageInfo: "infoGal",
        gallery: false,
		buttons: {
			prev: "img_prev",
			next: "img_next"
		},
        thumbnail: {
            minSize: 40,
            maxSize: 150
        }
    });
};

document.observe("dom:loaded", MyOwnLoad); //Dom loaded is sent when images are NOT LOADED
