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

  var ref = document.referrer;
  url1 = 'http://martinaorganicsk.lolipop.jp/martina/products/index.html';
  url2 = 'http://martinaorganicsk.lolipop.jp/martina/products/type.html';
  comm = new Array("rose", "sage", "shea", "ginseng", "happyAging", "special", 
                   "faceBody", "skinMessage", "maternity", "babyKids",  "mens");
  htype = new Array("dry", "sensitive", "combination", "aging01", "aging02");
  check = 0;
  name = '';

  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(sname  != ""){
        document.write("<li><a href='" +ref+ "'>" +sname + "</a></li>" );
      }
      i = 15;
    }
  }
  if (i  != 15) {
    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+ "</a></li>" );
        i = 6;
      }
    }
  }


