var currContainer=0;
var maxContainer=1
var currSlide=0;
var maxSlide=0;
var ss;
function slideShow(show){
	clearTimeout(ss);
	currSlide=0;
	initGallery(show);
	
	//store number of slides
	maxSlide=galleryArr.length-1;
	
	//show first slide
/*$('#slide'+currContainer).attr('src',galleryArr[currSlide]);
	$('#slideshow'+currContainer).attr('z-index',2).fadeIn(1000,function(){});
	
	//increment counters
	currSlide+=1;if(currSlide>maxSlide){currSlide=0;}
	currContainer+=1;if(currContainer>maxContainer){currContainer=0;}

	//call slide changer
	ss=setTimeout('runSlideShow();',5000); */
	
	runSlideShow();
}
function runSlideShow(){
	var sl=currContainer;

	//set source of new image
	$('#slide'+sl).attr('src',galleryArr[currSlide]);

	//find next slide number
	currSlide+=1;if(currSlide>maxSlide){currSlide=0;}
	//find next container number
	currContainer+=1;if(currContainer>maxContainer){currContainer=0;}

	$('#slideshow'+currContainer).attr('z-index',1);
	$('#slideshow'+sl).attr('z-index',2).fadeIn(1000,function(){$('#slideshow'+currContainer).fadeOut(1000)});

	ss=setTimeout('runSlideShow();',5000);
}
function endSlideShow(){
	$('#slideshow'+currContainer).fadeOut(100);

	//find next container number
	currContainer+=1;if(currContainer>maxContainer){currContainer=0;}

	$('#slideshow'+currContainer).fadeOut(500);
}


var galleryArr=new Array()

function initGallery(show){
	//clear prev slide show
	galleryArr=new Array();

	//set images for current slide show
	if(show=='home'){
		galleryArr[0]=["images/gallery/branches.jpg"] 
		galleryArr[1]=["images/gallery/portrait.jpg"] 
		galleryArr[2]=["images/gallery/ttc6.jpg"] 
		galleryArr[3]=["images/gallery/nbi1.jpg"] 
		galleryArr[4]=["images/gallery/atrium1.jpg"] 
		galleryArr[5]=["images/gallery/newttc3.jpg"] 
		galleryArr[6]=["images/gallery/thebar.jpg"] 
		galleryArr[7]=["images/gallery/ttc1.jpg"] 
		galleryArr[8]=["images/gallery/dessert.jpg"] 
	} else if(show=='menus'||show=='barmenus'||show=='diningmenus'){
		galleryArr[0]=["images/gallery/ttc6.jpg"] 
		galleryArr[1]=["images/gallery/food3.jpg"] 
		galleryArr[2]=["images/gallery/ttc5.jpg"] 
		galleryArr[3]=["images/gallery/ttc2.jpg"] 
		galleryArr[4]=["images/gallery/ttc4.jpg"] 
		galleryArr[5]=["images/gallery/dessert.jpg"]
		galleryArr[6]=["images/gallery/nbi3.jpg"] 
	} else if(show=='thebar'){
		galleryArr[0]=["images/gallery/bar1.jpg"] 
		galleryArr[1]=["images/gallery/nbi1.jpg"] 
		galleryArr[2]=["images/gallery/nbi2.jpg"] 
		galleryArr[3]=["images/gallery/bar5.jpg"] 
		galleryArr[4]=["images/gallery/thebar.jpg"] 
		galleryArr[5]=["images/gallery/ttc3.jpg"] 
		galleryArr[6]=["images/gallery/bar7.jpg"] 
		galleryArr[7]=["images/gallery/ttc8.jpg"] 
	} else if(show=='dr'){
		galleryArr[0]=["images/gallery/dr1.jpg"] 
		galleryArr[1]=["images/gallery/newttc7.jpg"] 
		galleryArr[2]=["images/gallery/dr3.jpg"] 
		galleryArr[3]=["images/gallery/menu.jpg"] 
		galleryArr[4]=["images/gallery/dr4.jpg"] 
		galleryArr[5]=["images/gallery/dessert.jpg"] 
	} else if(show=='contact'){
		galleryArr[0]=["images/ttc-map.gif"] 
	} else if(show=='location1'){
		galleryArr[0]=["images/gallery/exterior3.jpg"] 
		galleryArr[1]=["images/gallery/nbi4.jpg"] 
		galleryArr[2]=["images/gallery/nbi3.jpg"] 
	} else if(show=='ph'){
		galleryArr[0]=["images/gallery/function1.jpg"] 
		galleryArr[1]=["images/gallery/atriumfireplace.jpg"] 
		galleryArr[2]=["images/gallery/function3.jpg"] 
		galleryArr[0]=["images/gallery/ttcfood2.jpg"] 
		galleryArr[1]=["images/gallery/atriumtablerows.jpg"] 
		galleryArr[2]=["images/gallery/function6.jpg"] 
	} else if(show=='es'){
		galleryArr[0]=["images/gallery/linen.jpg"] 
	} else if(show=='np'){
		galleryArr[0]=["images/gallery/linen.jpg"] 
	} else if(show=='menusadmin'||show=='pressadmin'||show=='specialsadmin'||show=='newsadmin'||show=='eventsadmin'||show=='toplinkadmin'){
		galleryArr[0]=["images/gallery/linen.jpg"] 
	} else if(show=='res'){
		galleryArr[0]=["images/gallery/branches.jpg"] 
		galleryArr[1]=["images/gallery/portrait.jpg"] 
		galleryArr[2]=["images/gallery/ttc6.jpg"] 
		galleryArr[3]=["images/gallery/nbi1.jpg"] 
		galleryArr[4]=["images/gallery/atrium1.jpg"] 
		galleryArr[5]=["images/gallery/newttc3.jpg"] 
		galleryArr[6]=["images/gallery/thebar.jpg"] 
		galleryArr[7]=["images/gallery/ttc1.jpg"] 
		galleryArr[8]=["images/gallery/dessert.jpg"] 
	}
}
