window.addEvent('domready', function(){
		fadeIn();
		adaptSize(false); // for view windows less than the min size, prevents too high negative top position
		window.addEvent('resize', adaptSize.pass(true)); // recalculate after window resize
		// close button on non-home pages
		if ($('close'))
			$('close').addEvent('click', changepage.pass('home'));		
		
		if (page == 'contact'){
			$('mail').addEvent('mouseenter',function(){
				this.setStyle('background-color','#00ffff');//#00BBFA	#78B4CE
			});
			$('mail').addEvent('mouseleave',function(){
				this.setStyle('background-color','');
			});
		}
		
		jQuery(".fancybox").fancybox({
				overlayColor: '#000',
				overlayOpacity: 1,
				speedIn: 400,
				speedOut: 600,
				cyclic: true,
				'onComplete': function(){trap();}
			});
		
		trap(); // prevent right-click context menu on images
});

