window.addEvent("domready",function(){
	// var imgsPaths = new Array()
	
	if($('homeImage')){
		new Home({
			container:'homeImage',
			homeText:'homeText'
		})
	}else if($('galleryWrap')){
		var g = new Gallery({
			gallery:$('thumbsGallery_inner'),
			fullSizeImage:$('mainGallery'),
			loader:$('ajaxLoader'),
			imageCollection:collection,
			imagePath:"/public/images/collection"
		})		
	}else if($('map')){
		new Map({
			map:'mapArea',
			response:'locationsList',
			url:"/fr/boutiques/adresses/format/html"
		})
	}else if($('pressWrap')){
		var g = new Gallery({
			gallery:$('thumbsGallery_inner'),
			fullSizeImage:$('mainGallery'),
			loader:$('ajaxLoader'),
			imageCollection:press,
			imagePath:"/public/images/press"
		})		
	}
})