/* machias_clinic.js for mootools.js
 * Created: 20061128
 */

/* */

Window.onDomReady(startUp);
//window.onload = startUp;
function startUp() {
	
	/* slideshow */
	var mySlideData = new Array();
	var countArticle = 0;
	$$('#machias_clinic_pics ul li').each(function(el) {
	    var tmpA = el.getElement('a');
	    var tmpIMG = el.getElement('img');
	    mySlideData[countArticle++] = new Array(
	        tmpIMG.src,
	        tmpA.href,
	        tmpIMG.alt,
	        tmpA.title,
	        tmpA.rel
	    );
	});
	if (countArticle != 0) {
		//$('slideshow').injectBefore('<div class="jdSlideshow" id="mapSlideshow"></div>');
		//alert("Added "+countArticle+" slides");
		$$('#machias_clinic_pics ul').remove();
		var slideshow = new timedSlideShow($('machias_clinic_pics'), mySlideData, mySlideData[0][0]);
		Lightbox.init.bind(Lightbox); // bind lightbox inserted HTML
	}
	
}
