function imgallery(show,hide) {
	document.getElementById(show).style.display='block';
	document.getElementById(hide).style.display='none';
}
