var slideimages = new Array("http://www.udel.edu/hotel/images/gallery_photos/1.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/2.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/3.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/4.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/5.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/6.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/7.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/8.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/9.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/10.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/11.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/12.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/13.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/14.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/15.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/16.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/17.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/18.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/19.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/20.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/21.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/22.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/23.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/24.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/25.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/26.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/27.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/28.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/29.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/30.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/31.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/32.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/33.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/34.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/35.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/36.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/37.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/38.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/39.jpg",
							"http://www.udel.edu/hotel/images/gallery_photos/40.jpg")
 var loader = new Array();
 for(var i = 0; i < slideimages.length; i++){
 loader[i] = new Image();
 loader[i].src = slideimages[i];
 }
 
 var f=10
 var b=0
 var n = 0
 var l = slideimages.length-1
 var t = 40
 var c=1
 
 function nextSlide() {
 resetValues()
 if (n == l){
 n = 0
 }
 else{
 n = ++n
 }
 document.getElementById("backimage").src=slideimages[n];
 fadeImage();
 }
 
 function previousSlide() {
 resetValues()
 if (n == 0){
 n = l
 }
 else{
 n = --n
 }
 document.getElementById("backimage").src=slideimages[n];
 fadeImage();
 }
 
 function resetValues() {
 f=10
 b=0
 }
 
 function fadeImage() {
 if (f==0){
 document.getElementById("frontimage").src=slideimages[n];
 document.getElementById("frontimage").className="fadeimage10";
 document.getElementById("backimage").className="fadeimage0";
 c = 1 + n
 document.getElementById("slidenumber").innerHTML="" + c + " of " + slideimages.length;
 }
 else{
 document.getElementById("frontimage").className="fadeimage" + f;
 document.getElementById("backimage").className="fadeimage" + b;
 f = --f
 b = ++b
 window.setTimeout ("fadeImage()", t);
 }
 }
