function startGallery(){
	new Ajax('languages/en/slides.php', {
        method: 'get',
        update: $('myGallery'),
        onComplete: function(){
			var myGallery = new gallery($('myGallery'), {
		        timed: true,
		        showArrows: false,
		        showCarousel: false,
				showInfopane: true,
		        embedLinks: false
		    });
		}
	}).request();
}

window.addEvent('load', startGallery);

