disp = function(id) {
    var parnod = id.parentNode.className;
    if(parnod == 'link') id.parentNode.className = 'click'; else id.parentNode.className = 'link';
}

window.addEvent('load', function() {
 
	ReMooz.assign('.imagizer a.imgz', {
		'origin': 'img',
		'shadow': 'onOpenEnd', // fx is faster because shadow appears after resize animation
		'resizeFactor': 1, // resize to maximum 80% of screen size
		'cutOut': false, // don't hide the original
		'opacityResize': 0.4, // opaque resize
		'dragging': true, // disable dragging
		'centered': true // resize to center of the screen, not relative to the source element
	});
 
});

/*
window.addEvent('domready', function(){
  new Fx.Accordion($('accordion'), '#accordion .header', '#accordion .content');
});
*/
