(function($) {
     $(function() {
           $(".mapDistrict").click(function() {
                                       $(".mapPanel:visible").stop(true, true).hide();
                                       $("#" + $(this).attr("id").replace(/Area$/, '')).fadeIn("slow", "swing");
                                       return false;
                                   });
           $(".mapBack").click(function() {
                                   $(".mapPanel:visible").stop(true, true).hide();
                                   $("#japan").fadeIn("slow", "swing");
                                   return false;
                               });
           $("#japan").show();

           $(".searchMapDistrict").click(function() {
                                             $(".searchMapPanel:visible").stop(true, true).hide();
                                             $("#" + $(this).attr("id").replace(/Area$/, '')).fadeIn("slow", "swing");
                                             return false;
                                         });
           $(".searchMapBack").click(function() {
                                         $(".searchMapPanel:visible").stop(true, true).hide();
                                         $("#japanSearch").fadeIn("slow", "swing");
                                         return false;
                               });
           $("#japanSearch").show();
       });
 })(jQuery);

