var overlay = new Popup.Overlay();var lightbox = new Popup.Lightbox({ holder: overlay });window.addEvent('domready', function(){	// Open files in new window	$$('a[rel^=external]').each(function(a){		a.target = '_blank';	});	// Lightbox for all images marked with box	$$('a[rel^=box]').each(function(a){		lightbox.add(a.href, a.title);		a.addEvent('click', function(e){ e.preventDefault(); lightbox.show(this.href, this.title); });	});		// digiPlant	/*	if(!(Browser.Engine.trident && Browser.Engine.version < 5)){		var flip = new Element('a', {			href: 'http://www.digiplant.se',			target: '_blank',			styles: {				display: 'block',				position: 'fixed',				bottom: 0,				right: 0,				background: 'url(' + MEDIA_URL + 'img/flipback.png) no-repeat bottom right'			},			events: {				mouseenter: function(){					fx.options.duration = 200;					fx.options.transition = 'cubic:out';					fx.start({						width: 330,						height: 300					});				},				mouseleave: function(){					fx.options.duration = 100;					fx.options.transition = 'cubic:in';					fx.start({						width: 33,						height: 30					});				}			}		});		var img = new Element('img', {			src: MEDIA_URL + 'img/flip.png',			styles: {				width: 33,				height: 30,				'margin-left': -7,				'margin-top': -1,				'-ms-interpolation-mode': 'bicubic'			}		});		var fx = new Fx.Morph(img);		flip.adopt(img);		document.body.adopt(flip);	}	*/});