/*
 * onoville.js
 */

function startup(){
    $$('#photo_gallery img').each(function(img, i) {
        new ReMooz(img, {
        	source: img.getParent().href,
        	centered: true
        });	
    });
}

window.addEvent('domready', function(){
			 ReMooz.initialize(); // The easy way
			 startup();
});