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

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

	//preloader
	var imgs = new QueueLoader(['images/gallery/location-img1.jpg','photo0',
										 'images/gallery/location-img2.jpg','photo1',
										 'images/gallery/location-img3.jpg','photo2',
										 'images/gallery/location-img4.jpg','photo3',
										 'images/gallery/location-img5.jpg','photo4'
										 ]);
	
	mainMenu.setStartButton({mainIndex:4});
	
	var menu2props={
		overProps: { 'color':'#e58000' },
		outProps: { 'color':'#333333' },
		activeProps: { 'color':'#e58000'}
	};

	var menu2 = new Menu({menuId:'menu2',type:'accordion',props:menu2props,morph:true});
	
});