
	function showPolaroid(index,section)
	{
		var container = $$('.polaroidLarge')[0].getChildren()[0];
		new Fx.Styles(container.getChildren()[0],{duration:500, onComplete:function(){
			new Asset.image('images/gallery/'+section+'/l'+index+'.jpg', {onload:function(){
				container.getChildren()[1].src = this.src;
				container.getChildren()[1].setOpacity(0);
				container.getChildren()[1].setStyle('display','inline');
				if(window.ie) container.getChildren()[1].setStyle('top',-211);
				new Fx.Styles(container.getChildren()[1],{duration:500, onComplete:function(){
					container.getChildren()[0].src = container.getChildren()[1].src;
					container.getChildren()[0].setOpacity(1);
					container.getChildren()[1].setOpacity(0);
				}}).start({'opacity':1});
			}});
		}}).start({'opacity':0});
	}
