var interval = 5000;
var picName = Array();
	picName[0] = "default.jpg";
	picName[1] = "anspiel_wesley.jpg";
	picName[2] = "chor.jpg";
	picName[3] = "eingang_belebt.jpg";
	picName[4] = "eingangshalle_belebt.jpg";
	picName[5] = "eingangshalle_belebt2.jpg";
	picName[6] = "eingangshalle_belebt3.jpg";
	picName[7] = "frauenkreis.jpg";
	picName[8] = "frauenstammtisch.jpg";
	picName[9] = "gottesdienst.jpg";
	picName[10] = "gottesdienst_2.jpg";
	picName[11] = "mannschaft.jpg";
    picName[12] = "seniorenkreis.jpg";
var picPath = "images/gallerypics/";

function initMain() {
	//start the change after 3 seconds
	addPicturesToGallery();
	jQuery('#homepiclist').innerfade({
		animationtype: 'fade',
		speed: 'slow',
		timeout: 2000,
		containerheight: '250px',
		type: 'random_start'
	});
}

function addPicturesToGallery() {
	myList = Array();
	picContainer = jQuery("#homepicgallery ul");
	for(i=0;i<picName.length;i++) {
		//TODO:check existence of file beforhande
		myList[i] = "<li><img src="+picPath+picName[i]+" /></li>";
		picContainer.append(myList[i]);
	}
}

jQuery(document).ready(initMain);
