function startGallery() {
	
	if($('myGallery') != null){
	$('myGallery').style.display = 'block';
	$('myGallerynoJS').style.display = 'none';
	
	
	var myGallery = new gallery($('myGallery'), {
		timed: true,
		delay: 7000,
		showArrows: true,
		showCarousel: false,
		showInfopane: false,
		embedLinks: true,
		lightbox: true,
		fadeDuration:2000
	});
	}
	
		$('myGallery2').style.display = 'block';
	
		var myGallery = new gallery($('myGallery2'), {
			timed: true,
			delay: 7000,
			showArrows: false,
			showCarousel: false,
			showInfopane: false,
			embedLinks: false,
			lightbox: false,
			fadeDuration:2000
		});
	

}
window.addEvent('domready', startGallery);
