/********************************************************************/
/*  bgChange.js                                                     */
/********************************************************************/ 
/*
 * タブクリックにより背景を切り替え
 */


$(document).ready(function(){
    // 初期設定
    $("#container-idea").css("background", "url(img/bg01.jpg) no-repeat center top");


    // 各タブをクリックしたとき
    $("#bt01").click(function () {
        change01();
    });

    $("#bt02").click(function () {
        change02();
    });

    $("#bt03").click(function () {
        change03();
    });


    // URLから取得したとき
    if (location.href.indexOf("fragment-1", 0) > 0) {
        change01();
    }
    if (location.href.indexOf("fragment-2", 0) > 0) {
        change02();
    }
    if (location.href.indexOf("fragment-3", 0) > 0) {
        change03();
    }


    function change01() {
    $("#container-idea").css("background", "url(img/bg01.jpg) no-repeat center top");
    }

    function change02() {
    $("#container-idea").css("background", "url(img/bg02.jpg) no-repeat center top");
    }

    function change03() {
    $("#container-idea").css("background", "url(img/bg03.jpg) no-repeat center top");
    }

});
