function minigallery(t) {
	if( !t.id ) t = t.element();
	$$('#minigallery_nav li').each(function(e) { if( $(e) != $(t) ) { new Effect.Opacity(e,{duration:0,to:0.6}); }});
	new Effect.Opacity(t,{duration:0,to:1});
	p = $(t).id.replace('t','m');
	$$('.minigallery_photo').each(function(e) { if( $(e) != $(p) ) { new Effect.Fade(e,{duration:0.3}); }});
	new Effect.Appear(p,{duration:0.3});
}
function minigalleryinit(arr) {
	if(arr.length < 1) { new Effect.Fade('minigallery_loading'); return; }
	i = arr.shift();
	objImage = new Image();
	objThumb = new Image();
	img = '/photogallery/resource/gallery/photos/' + i + '.jpg';
	objImage.src = img;
	$('m_'+i).setStyle({background:'transparent url('+"'"+img+"'"+') top left no-repeat'});
	thumb = '/photogallery/resource/gallery/colorthumbs/' + i + '.jpg';
	objThumb.src = thumb;
	$('t_'+i).setStyle({background:'transparent url('+"'"+thumb+"'"+') top left no-repeat'});
	$('t_'+i).observe('click',minigallery.bind($('t_'+i)));
	objImage.onload = function(){ minigalleryinit(arr); };
}
