/*
* @title bookmarklet
* @description my bookmarklet
* @include http://*
* @license MIT License
* @require
*/
/* 支払い方法絞り込み準備 */
$("th.w_payment","table.table_pricelist").append("<br><div id='paytype'><img src='http://img.coneco.net/icon/key1.gif' border='0'><img src='http://img.coneco.net/icon/key2.gif' border='0'><img src='http://img.coneco.net/icon/key7.gif' border='0'><img src='http://img.coneco.net/icon/key3.gif' border='0'><img src='http://img.coneco.net/icon/key4.gif' border='0'><img src='http://img.coneco.net/icon/key5.gif' border='0'></div>");
/* 支払い方法絞り込み実行 */
$("img","div#paytype").css("cursor","pointer").click(
function(){
$("img","div#paytype").each(
function(){
if(this.src.indexOf("_g.gif") < 0){
this.src = this.src.replace(".gif","_g.gif");
}
}
);
var imgurl = this.src.replace("_g","");
$("tr.bgR,tr.bgG,tr.bgW","table.table_pricelist").css("display","none");
$("img[src='"+imgurl+"']","table.table_pricelist").parent().parent().parent().css("display","table-row");
this.src = imgurl;
}
);