$(document).ready(function() {

	$("#resident-image, #potential-image, #tourism-image").hide();
	
	$("#businessbox").click(function () {
      $("#business-image").show();
      $("#resident-image").hide();
      $("#potential-image").hide();
      $("#tourism-image").hide();
     });
     
     $("#residentbox").click(function () {
      $("#business-image").hide();
      $("#resident-image").show();
      $("#potential-image").hide();
      $("#tourism-image").hide();
     });
      
      
      $("#potentialbox").click(function () {
      $("#business-image").hide();
      $("#resident-image").hide();
      $("#potential-image").show();
      $("#tourism-image").hide();
     });
      
      
      $("#tourismbox").click(function () {
      $("#business-image").hide();
      $("#resident-image").hide();
      $("#potential-image").hide();
      $("#tourism-image").show();
     });
      
     
});