var myGallery;
var myGallery2;

function startGallery() {
				 myGallery = new gallery($('myGallery'), {
					timed: true,
					showArrows: true,
					showCarousel: false,
					subtitleSelector: 'span',
					embedLinks: true
				});
				document.gallery = myGallery;
			}
			
function startGallery2() {
				 myGallery2 = new gallery($('myGallery2'), {
					timed: true,
					showArrows: true,
					showCarousel: false,
					subtitleSelector: 'span',
					embedLinks: true
				});			
			
			document.gallery2 = myGallery2;
			}
			
			window.onDomReady(startGallery);
			window.onDomReady(startGallery2);



 

