window.addEvent('domready',function(){

	//gallery
// 	$('photoTitle').setStyle('opacity',0.8);
// 	initGallery();

	//preloader
// 	var imgs = new QueueLoader(['images/gallery/fake1.jpg','photo0',
// 										 'images/gallery/fake2.jpg','photo1',
// 										 'images/gallery/fake3.jpg','photo2',
// 										 'images/gallery/fake4.jpg','photo3',
// 										 'images/gallery/fake5.jpg','photo4',
// 										 'images/gallery/fake6.jpg','photo5'
// 										 ]);
	
	mainMenu.setStartButton({mainIndex:0});
	
	if($('nletter-submit')){
		$('nletter-submit').addEvent('click',function(e){
			e.preventDefault();
			$('nletter-form').submit();
		});
	}
	
	if($('email-input')){
		$('email-input').addEvent('focus',function(e){
			var i = e.target;
			i.value = '';
			i.setStyle('color','#333333');
		});
	}
});