function ThumbOver (which, gall) {
	thumb = which + '_thumb';
	thumbpic = '/images/misc/bk_red.gif';
	document.images[thumb].src = thumbpic;
}

function ThumbOut (which, gall) {
	thumb = which + '_thumb';
	thumbpic = '/images/gallery/' + gall + '/' + which + '_th.jpg';
	document.images[thumb].src = thumbpic;
}


function show(){

info = 'more';
more = 'show';

	if (document.getElementById){
		target = document.getElementById('more');
		target.style.display = "";
		
		target2 = document.getElementById('show');
		target2.style.display = "none";


	}
}

function toggle( targetId ){
  if (document.getElementById){
    target = document.getElementById( targetId );
     if (target.style.display == "none"){
        target.style.display = "";
         }
      else { target.style.display = "none"; }
  }
}
