function showGallery_5(){
	var ME = this
	this.Acolor = "#000000"
	if(!window.galArray)	window.galArray = new Array;
	var currPic = 0
	ME.inIndex = window.galArray.length
	window.galArray[ME.inIndex] = this
	ME.thumb_holder = new Array;
	var anchors = ME.getElementsByTagName("A")
	for(n=0;n<anchors.length; n++){
		anchors[n].startMe = anchorBehavior
		anchors[n].startMe(n)
	}		
	
	function anchorBehavior(index){
		var ME_A= this
		ME_A.inIndex = index
		
		if(window.setDomPopUp){
			ME_A.onclick = function(){
				currPic= index
				window.setDomPopUp(getPicHTML())
				return false
				
			}
			
		}else{
			ME_A.onclick = function(){ 
				return  false
			}
			
		}
		
		
	}
	function getPicHTML(){
		var htm= '<img src="'+ anchors[currPic]  +'" id="galleryImag">\
					<button class="gallery_prev" onclick="window.galArray['+ ME.inIndex +'].setPrevious()">הקודם </button>\
					<button class="gallery_next" onclick="window.galArray['+ ME.inIndex +'].setNext()">הבא</button>' 
			
		return htm
		
	}
	ME.setNext =function(){
		if(currPic< anchors.length -1){
			currPic++	
		}else{
			currPic = 0	
		}
		document.getElementById("galleryImag").src = anchors[currPic]
		
	}
	ME.setPrevious =function(){
		if(currPic>0){
			currPic--	
		}else{
			currPic=anchors.length -1
		}
		document.getElementById("galleryImag").src = anchors[currPic]
	}
	
}