//////////////////////////
// パンくず設定方法     //
//////////////////////////

  var ref = document.referrer;
  url1 = 'http://tautropfen.lolipop.jp/tautropfen/products/index.html';
  url2 = 'http://tautropfen.lolipop.jp/tautropfen/products/type.html';
  comm = new Array("wascherde", "rose", "sandoron", "teatori", "special", "skin", 
                   "baby", "liquid", "original");
  htype = new Array("facecare", "haircare", "bodycare", "babycare", "revivalcare");
  hname = new Array("フェイスケア", "ヘアーケア", "ボディケア", "ベビーケア", "リバイバルケア");
  check = 0;

  for (i = 0; i < comm.length; i++){
    check = ref.indexOf(comm[i],0);
    if (check > 0){
      document.write("<li><a href='" +url1 + "'>お取扱商品：商品一覧</a></li>" );
      if(breadname != ""){
        document.write("<li><a href='" +ref+ "'>" +breadname+ "</a></li>" );
      }
      i = 10;
    }
  }
  if (i  != 10) {
    check = 0;
    for (i = 0; i < htype.length; i++){
      check = ref.indexOf(htype[i],0);
      if (check > 0){
        document.write("<li><a href='" +url2 + "'>お取扱商品：用途</a></li>" );
        document.write("<li><a href='" +ref+ "'>" +hname[i]+ "</a></li>" );
        i = 6;
      }
    }
  }


