 var IMGs = new Array(9) // Replace "2" with amount of images you have, if you have "10", put "9", cuz Zero is included


 IMGs[0] = "/images/design_gallery/IMG_0380.jpg"	// Start Defining Paths with directory
 IMGs[1] = "/images/design_gallery/IMG_0378.jpg"
 IMGs[2] = "/images/design_gallery/IMG_0376.jpg"
 IMGs[3] = "/images/design_gallery/IMG_0366.jpg"
 IMGs[4] = "/images/design_gallery/IMG_0173.jpg"
 IMGs[5] = "/images/design_gallery/IMG_0170.jpg"
 IMGs[6] = "/images/design_gallery/IMG_0248.jpg"
 IMGs[7] = "/images/design_gallery/IMG_0236.jpg"
 IMGs[8] = "/images/design_gallery/IMG_0202.jpg"
 IMGs[9] = "/images/design_gallery/IMG_0205.jpg"


 var inc
 inc = 0


 function next() {
	stoper = blockIT(inc)
	if(stoper!=false) {
		inc = inc + 1
		document.images["slideshow"].src = IMGs[inc]
	}

 }

 function back() {
	

	if(inc>0) {
		inc = inc -1
		document.images["slideshow"].src = IMGs[inc]			
	}

	
 }

 function blockIT(v) {

	var Len;
	Len = IMGs.length
	
	if(v==Len-1) {
		return false
	}

 }