	  var currentpane = "";
	  var currentupimg = "";
	  var recongalleriesLoaded = false;
	  var opengalleriesLoaded = false;
	  var mainpageLoaded = false;	  

	  function resetbuttons() {
		  $("#mainbtn").attr("src", "images/main_up.jpg");
		  $("#reconbtn").attr("src", "images/recon_up.jpg");
		  $("#warebtn").attr("src", "images/ware_up.jpg");
		  $("#contactbtn").attr("src", "images/contact_up.jpg");
		  $("#inventorybtn").attr("src", "images/inventory_up.jpg");
	  }

	  function setupimg(button) {
		  if (button == "openhousebtn")
		  {
			  button = "mainbtn";
		  }
		  if (currentupimg != button)
		  {
		      resetbuttons();
			  $("#" + button).attr("src", "images/" + button.replace("btn", "") + "_over.jpg");			  
		  }
		  currentupimg = button;
	  }	  

	  $(document).ready(function() {
		  setupimg("mainbtn");
		  $(document).pngFix();	
		  
		  if (!opengalleriesLoaded)
		  {
			  $("#opengallery a").lightBox({fixedNavigation:true});
			  opengalleriesLoaded = true;
		  }	  	
	  });
