/*
 * js.js - 地球村l Group
 *
 * Create:  2008-02-06  Modify:  2008-02-21
 * Copyright (C)Chikyumura. All rights reserved.
 *
 */

/*------------------------------
GoogleMaps用別ウィンドウ
------------------------------*/
$(function(){
  $("a#gmap").click(function(){
    window.open(this.href, 'GoogleMaps', 'width=500, height=500;');
    return false;
  });

  $("a.tabTopics").click(function() { changeTab(0); return false; });
  $("a.tabReport").click(function() { changeTab(1); return false; });
  $("a.tabEarthProbrem").click(function() { changeTab(2); return false; });
  $("a.tabDidYouKnow").click(function() { changeTab(3); return false; });

});
/*------------------------------
タブ切り替え
------------------------------*/
function changeTab(index) {

  boxID = Array('boxTopicsmenu', 'boxReportmenu', 'boxProblemmenu', 'boxKnowmenu');

  for (i=0; i<boxID.length; i++) {
    if (index != i) $("div#"+boxID[i]).hide();
    else $("div#"+boxID[i]).show();
  }
  return false;
}


