// show -- hide menu
function HideDIV(div) { document.getElementById(div).style.display = "none"; }
function DisplayDIV(d) { document.getElementById(d).style.display = "block"; }


			function startGallery() {
				var myGallery = new gallery($('myGallery'), {
					timed: false
				});
			}
			
