function startGallery() {
	var myGallery = new gallery($('myGallery'), {
		timed: true,
		showCarousel: false,
		showInfopane: false,
		delay: 3000
	});
}

function attachStyle(src) {
	var linker = new Element('link');
		linker.setProperties({
		rel: 'stylesheet',
		type: 'text/css',
		media: 'all',
		href: src
	});
	
	linker.injectBefore($(document.head).getElement('script'));
}

window.addEvent('domready', function(){
	attachStyle("../../css/jd.gallery.css");
	startGallery();
});
