$(document).ready(function(){
    $("#plant-1").hide();
	$("#plant-2").hide();
	$("#plant-3").hide();
	$("#plant-4").hide();
	$("#plant-5").hide();
	$("#plant-6").hide()
    
    $("#plant-1-map").click(function () {
       $(".plant-detail").hide();
       $("#plant-1").show();
       return false;
    });
    $("#plant-1-header").click(function () {
       $("#plant-1").hide();
       return false;
    });
    $("#plant-2-map").click(function () {
       $(".plant-detail").hide();
       $("#plant-2").show();
       return false;
    });
    $("#plant-2-header").click(function () {
       $("#plant-2").hide();
       return false;
    });
    $("#plant-3-map").click(function () {
       $(".plant-detail").hide();
       $("#plant-3").show();
       return false;
    });
    $("#plant-3-header").click(function () {
       $("#plant-3").hide();
       return false;
    });
    $("#plant-4-map").click(function () {
       $(".plant-detail").hide();
       $("#plant-4").show();
       return false;
    });
    $("#plant-4-header").click(function () {
       $("#plant-4").hide();
       return false;
    });
    $("#plant-5-map").click(function () {
       $(".plant-detail").hide();
       $("#plant-5").show();
       return false;
    });
    $("#plant-5-header").click(function () {
       $("#plant-5").hide();
       return false;
    }) ;   
    $("#plant-6-map").click(function () {
       $(".plant-detail").hide();
       $("#plant-6").show();
       return false;
    });
    $("#plant-6-header").click(function () {
       $("#plant-6").hide();
       return false;
    });
    $("#plant-7-map").click(function () {
       $(".plant-detail").hide();
       $("#plant-7").show();
       return false;
    });
    $("#plant-7-header").click(function () {
       $("#plant-7").hide();
       return false;
    });	
    $("#plant-8-map").click(function () {
       $(".plant-detail").hide();
       $("#plant-8").show();
       return false;
    });
    $("#plant-8-header").click(function () {
       $("#plant-8").hide();
       return false;
    });
    $("#plant-9-map").click(function () {
       $(".plant-detail").hide();
       $("#plant-9").show();
       return false;
    });
    $("#plant-9-header").click(function () {
       $("#plant-9").hide();
       return false;
    });
});